Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for spent (0.15 sec)

  1. src/crypto/tls/handshake_server_test.go

    		keyShares:          []keyShare{{group: X25519, data: pk.PublicKey().Bytes()}},
    		supportedCurves:    []CurveID{CurveP256},
    	}
    	testClientHelloFailure(t, testConfig, clientHello, "client sent key share for group it does not support")
    }
    
    func TestHandshakeServerALPN(t *testing.T) {
    	config := testConfig.Clone()
    	config.NextProtos = []string{"proto1", "proto2"}
    
    	test := &serverTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		klog.V(4).InfoS("Sending events to api server")
    		eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: kubeDeps.EventClient.Events("")})
    	} else {
    		klog.InfoS("No api server defined - no events will be sent to API server")
    	}
    }
    
    func getReservedCPUs(machineInfo *cadvisorapi.MachineInfo, cpus string) (cpuset.CPUSet, error) {
    	emptyCPUSet := cpuset.New()
    
    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        llvm::SmallVector<Value, 4> host_outputs;
        // We want to move the clustered_ops if the op to be added has all
        // statically shaped operands since we can't ensure that the static shapes
        // has been sent back to host in all cases.  See
        // @static_shapes_sandwiched_outside_compilation MLIR test for an example.
        if (!HasDynamicExternalValues(&op) && !clustered_ops.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters_test.go

    			// the reason for this is unclear, so we may want to actually send an event, and change these test cases
    			// to ensure an event is sent.
    		},
    		{
    			desc: "new, ready: soft requirement warning",
    			node: withCapacity.DeepCopy(),
    			cmStatus: cm.Status{
    				SoftRequirements: fmt.Errorf("foo"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    			// If we're not using special go command flags,
    			// skip all the go command machinery.
    			// This avoids any time the go command would
    			// spend checking whether, for example, the installed
    			// package runtime is up to date.
    			// Because we run lots of trivial test programs,
    			// the time adds up.
    			pkg := filepath.Join(tempDir, "pkg.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. cmd/iam.go

    	}
    }
    
    func (sys *IAMSys) validateAndAddRolePolicyMappings(ctx context.Context, m map[arn.ARN]string) {
    	// Validate that policies associated with roles are defined. If
    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    		if err != nil {
    			t.Fatalf("%s : %s", instanceType, err)
    		}
    	}
    	// Parts to be sent as input for CompleteMultipartUpload.
    	inputParts := []struct {
    		parts []CompletePart
    	}{
    		// inputParts - 0.
    		// Case for replicating ETag mismatch.
    		{
    			[]CompletePart{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    		return
    	}
    
    	var (
    		targetGroups []string
    		err          error
    	)
    
    	// Find the user for the request sender (as it may be sent via a service
    	// account or STS account):
    	requestorUser := cred.AccessKey
    	requestorParentUser := cred.AccessKey
    	requestorGroups := cred.Groups
    	requestorIsDerivedCredential := false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	backingStorage := &dummyStorage{}
    	cacher, _, err := newTestCacher(backingStorage)
    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	// Ensure that bookmarks are sent more frequently than every 1m.
    	cacher.bookmarkWatchers = newTimeBucketWatchers(clock.RealClock{}, 2*time.Second)
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    		t.Errorf("txt[1], got %q, want %q", txt[1], want)
    	}
    }
    
    // Issue 29644: support single-request resolv.conf option in pure Go resolver.
    // The A and AAAA queries will be sent sequentially, not in parallel.
    func TestSingleRequestLookup(t *testing.T) {
    	defer dnsWaitGroup.Wait()
    	var (
    		firstcalled int32
    		ipv4        int32 = 1
    		ipv6        int32 = 2
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top