Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for spent (0.07 sec)

  1. pilot/pkg/networking/core/listener.go

    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    	mtlsHTTPALPNs = []string{"istio-http/1.0", "istio-http/1.1", "istio-h2"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = [{
    A pseudo-op to represent host-side computation in an XLA program.
      }];
    
      let arguments = (ins
        Arg<Variadic<TF_Tensor>, [{A list of tensors that will be sent to the host.}]>:$inputs,
    
        StrArrayAttr:$ancestors,
        TF_ShapeAttrArray:$shapes,
        OptionalAttr<SymbolRefAttr>:$shape_inference_graph,
        StrAttr:$key,
        DefaultValuedStrAttr<StrAttr, "">:$send_key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/testing/testing.go

    		// Multiple processes may run in parallel, but only one input can run at a
    		// time per process so we can attribute crashes to specific inputs.
    		return
    	}
    
    	// We don't want to include the time we spend waiting for serial tests
    	// in the test duration. Record the elapsed time thus far and reset the
    	// timer afterwards.
    	t.duration += highPrecisionTimeSince(t.start)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top