Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 177 for greatest (0.18 sec)

  1. src/syscall/syscall_windows.go

    	// Valid UTF-8 characters of 4 bytes require two uint16.
    	// Bytes with invalid UTF-8 encoding require maximum one uint16 per byte.
    	// So the number of UTF-8 code units (len(s)) is always greater or
    	// equal than the number of UTF-16 code units.
    	// Also account for the terminating NUL character.
    	buf := make([]uint16, 0, len(s)+1)
    	buf = encodeWTF16(s, buf)
    	return append(buf, 0), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    func withCDIDevices(cdiDevices ...string) containerAllocateResponseBuilderOption {
    	return func(b *containerAllocateResponseBuilder) {
    		b.cdiDevices = cdiDevices
    	}
    }
    
    // newContainerAllocateResponse creates a ContainerAllocateResponse with the given options.
    func newContainerAllocateResponse(opts ...containerAllocateResponseBuilderOption) *pluginapi.ContainerAllocateResponse {
    	b := &containerAllocateResponseBuilder{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

      func.return
    }
    
    // -----
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests loop with resource that is unique per iteration.
    //
    // In cases where a resource-allocating op creates a new unique resource per
    // loop iteration (ops with `TF_UniqueResourceAllocation` trait, in this case:
    // `tf.StackV2`), make sure that we don't create data dependencies between
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  4. src/time/format.go

    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    // newParseError creates a new ParseError.
    // The provided value and valueElem are cloned to avoid escaping their values.
    func newParseError(layout, value, layoutElem, valueElem, message string) *ParseError {
    	valueCopy := stringslite.Clone(value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
                   * with two implementations, one that contains causeless Cancellation instances and
                   * the other of which creates new Cancellation instances each time it's called? Yet
                   * another alternative is to fill in a non-null value for each of the fields no matter
                   * what and to just not use it if !GENERATE_CANCELLATION_CAUSES.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
                   * with two implementations, one that contains causeless Cancellation instances and
                   * the other of which creates new Cancellation instances each time it's called? Yet
                   * another alternative is to fill in a non-null value for each of the fields no matter
                   * what and to just not use it if !GENERATE_CANCELLATION_CAUSES.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. src/cmd/dist/build.go

    	xprintf("Building Go bootstrap cmd/go (go_bootstrap) using Go toolchain1.\n")
    	install("runtime")     // dependency not visible in sources; also sets up textflag.h
    	install("time/tzdata") // no dependency in sources; creates generated file
    	install("cmd/go")
    	if vflag > 0 {
    		xprintf("\n")
    	}
    
    	gogcflags = os.Getenv("GO_GCFLAGS") // we were using $BOOT_GO_GCFLAGS until now
    	setNoOpt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    )
    
    // target represent the (signature) type and description of the LHS
    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/debug/elf/file_test.go

    	_, err = r.Read(p)
    	if err == nil || err.Error() != wantError {
    		t.Fatalf("r.Read(p) got error %q, want error %q", err, wantError)
    	}
    }
    
    // TestLargeNumberOfSections tests the case that a file has greater than or
    // equal to 65280 (0xff00) sections.
    func TestLargeNumberOfSections(t *testing.T) {
    	// A file with >= 0xff00 sections is too big, so we will construct it on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation_test.go

    			),
    		),
    		"endPort defined without port defined": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    			setEgressPorts(makePort(&protocolTCP, intstr.FromInt32(0), 32768)),
    		),
    		"port is greater than endPort": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    			setEgressPorts(makePort(&protocolSCTP, intstr.FromInt32(35000), 32768)),
    		),
    		"multiple invalid port ranges defined": makeNetworkPolicyCustom(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top