Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 132 for sget (1.44 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    			initialDelay := manager.failedPodsBackoff.Get(backoffKey)
    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    
    			resetCounters(manager)
    
    			// Immediate (second) sync gets limited by the backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. src/reflect/value.go

    	typ_ *abi.Type
    
    	// Pointer-valued data or, if flagIndir is set, pointer to data.
    	// Valid when either flagIndir is set or typ.pointers() is true.
    	ptr unsafe.Pointer
    
    	// flag holds metadata about the value.
    	//
    	// The lowest five bits give the Kind of the value, mirroring typ.Kind().
    	//
    	// The next set of bits are flag bits:
    	//	- flagStickyRO: obtained via unexported not embedded field, so read-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    		keepalive *core.TcpKeepalive
    	}{
    		{
    			// Do not set tcp_keepalive anywhere
    			"unset",
    			None,
    			nil,
    		},
    		{
    			// Set mesh wide default for tcp_keepalive.
    			"mesh",
    			Mesh,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(MeshWideTCPKeepaliveSeconds)}},
    		},
    		{
    			// Set DestinationRule override for tcp_keepalive.
    			"destination rule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".txt")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    	count, err := testutil.GetHistogramMetricCount(m)
    	if err != nil {
    		t.Errorf("Failed to get %s sampleCount, err: %v", metrics.PluginExecutionDuration.Name, err)
    	}
    	if count == 0 {
    		t.Error("Expect at least 1 sample")
    	}
    	value, err := testutil.GetHistogramMetricValue(m)
    	if err != nil {
    		t.Errorf("Failed to get %s value, err: %v", metrics.PluginExecutionDuration.Name, err)
    	}
    	checkLatency(t, value)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	// s are the elements in the set.
    	s []connRequestAndIndex
    }
    
    type connRequestAndIndex struct {
    	// req is the element in the set.
    	req chan connRequest
    
    	// curIdx points to the current location of this element in
    	// connRequestSet.s. It gets set to -1 upon removal.
    	curIdx *int
    }
    
    // CloseAndRemoveAll closes all channels in the set
    // and clears the set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    	BuildID       string                `json:",omitempty"` // build ID of the compiled package (set by go list -export)
    	Module        *modinfo.ModulePublic `json:",omitempty"` // info about package's module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	targetRefs []*type_beta.PolicyTargetReference,
    ) (v Validation) {
    	set := 0
    	if selector != nil {
    		set++
    	}
    	if targetRef != nil {
    		set++
    	}
    	if len(targetRefs) > 0 {
    		set++
    	}
    	if set > 1 {
    		v = appendErrorf(v, "only one of targetRefs or workloadSelector can be set")
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    		add chain ip kube-proxy services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    `, // the observed value will always be 0, because we don't proceed the fake clock.
    		},
    	}
    
    	resetMetrics := func() {
    		metrics.ActivePods().Set(0)
    		metrics.BackoffPods().Set(0)
    		metrics.UnschedulablePods().Set(0)
    		metrics.GatedPods().Set(0)
    		metrics.PluginExecutionDuration.Reset()
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			resetMetrics()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top