Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 290 for chanlen (0.56 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// lastTransitionTime is the last time the condition transitioned from one status to another.
    	// This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
    	// +required
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:Type=string
    	// +kubebuilder:validation:Format=date-time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					applyPatchOperation{
    						"change a previously ratcheted field to an invalid value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"field": map[string]interface{}{
    								"object2": map[string]interface{}{
    									"stringField": "a changed string",
    								},
    								"object3": map[string]interface{}{
    									"stringField": "a changed third string",
    								},
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    		dsc.enqueueDaemonSet(ds)
    	}
    }
    
    // updateHistory figures out what DaemonSet(s) manage a ControllerRevision when the ControllerRevision
    // is updated and wake them up. If anything of the ControllerRevision has changed, we need to  awaken
    // both the old and new DaemonSets.
    func (dsc *DaemonSetsController) updateHistory(logger klog.Logger, old, cur interface{}) {
    	curHistory := cur.(*apps.ControllerRevision)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker_test.go

    				tc.endpointsChangeTracker.EndpointSliceUpdate(slice, false)
    			}
    			changes := tc.endpointsChangeTracker.checkoutChanges()
    
    			if len(tc.expectedChanges) != len(changes) {
    				t.Fatalf("Expected %d changes, got %d", len(tc.expectedChanges), len(changes))
    			}
    
    			for _, change := range changes {
    				// All of the test cases have 0 or 1 changes, so if we're
    				// here, then expectedChanges[0] is what we expect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    // build list from its go.mod file.
    //
    // LoadModFile may make changes in memory, like adding a go directive and
    // ensuring requirements are consistent. The caller is responsible for ensuring
    // those changes are written to disk by calling LoadPackages or ListModules
    // (unless ExplicitWriteGoMod is set) or by calling WriteGoMod directly.
    //
    // As a side-effect, LoadModFile may change cfg.BuildMod to "vendor" if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		// Make a NOP change, expect that there are no changes
    		createConfigs([]*config.Config{httpStaticOverlayUpdatedNop}, store, t)
    		expectServiceInstances(t, sd, httpStaticOverlayUpdatedNop, 0, instances)
    		// TODO this could trigger no changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    			changed: false,
    		},
    	}
    	for _, tc := range testCases {
    		if ownerRefsChanged(toRefs(tc.orig), toRefs(tc.new)) != tc.changed {
    			t.Errorf("Expected change=%t but got %t for %v vs %v", tc.changed, !tc.changed, tc.orig, tc.new)
    		}
    	}
    }
    
    func TestGetParentNameAndOrdinal(t *testing.T) {
    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    // in the build list may have been changed (possibly to or from "none") as a
    // result.
    func EditBuildList(ctx context.Context, add, mustSelect []module.Version) (changed bool, err error) {
    	rs, changed, err := editRequirements(ctx, LoadModFile(ctx), add, mustSelect)
    	if err != nil {
    		return false, err
    	}
    	requirements = rs
    	return changed, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	Channel uint8
    
    	raw RawSockaddrRFCOMM
    }
    
    func (sa *SockaddrRFCOMM) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_BLUETOOTH
    	sa.raw.Channel = sa.Channel
    	sa.raw.Bdaddr = sa.Addr
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrRFCOMM, nil
    }
    
    // SockaddrCAN implements the Sockaddr interface for AF_CAN type sockets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top