Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,349 for notC (0.16 sec)

  1. staging/src/k8s.io/api/events/v1/types.go

    	Related *corev1.ObjectReference `json:"related,omitempty" protobuf:"bytes,9,opt,name=related"`
    
    	// note is a human-readable description of the status of this operation.
    	// Maximal length of the note is 1kB, but libraries should be prepared to
    	// handle values up to 64kB.
    	// +optional
    	Note string `json:"note,omitempty" protobuf:"bytes,10,opt,name=note"`
    
    	// type is the type of this event (Normal, Warning), new types could be added in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    		// The append() that calls growslice is going to overwrite from oldLen to newLen.
    		// Only clear the part that will not be overwritten.
    		// The reflect_growslice() that calls growslice will manually clear
    		// the region not cleared here.
    		memclrNoHeapPointers(add(p, newlenmem), capmem-newlenmem)
    	} else {
    		// Note: can't use rawmem (which avoids zeroing of memory), because then GC can scan uninitialized memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      may not be compatible for another.
    
    
                      For example, an implementation that cannot serve both TCP and UDP listeners
                      on the same address, or cannot mix HTTPS and generic TLS listens on the same port
                      would not consider those cases compatible, even though they are distinct.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    	}
    	if ctxt.IsNetbsd() {
    		shstrtabAddstring(".note.netbsd.ident")
    		if *flagRace {
    			shstrtabAddstring(".note.netbsd.pax")
    		}
    	}
    	if ctxt.IsOpenbsd() {
    		shstrtabAddstring(".note.openbsd.ident")
    	}
    	if ctxt.IsFreebsd() {
    		shstrtabAddstring(".note.tag")
    	}
    	if len(buildinfo) > 0 {
    		shstrtabAddstring(".note.gnu.build-id")
    	}
    	if *flagBuildid != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // as a textproto.
    // Next ID: 2
    message QuantizationSpecs {
      // List of `QuantizationSpec`s. Later spec in the sequence takes precedence.
      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
      // TODO: b/307620778 - Support tie-breaking for conflicting specs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * provider will not be tracked further.
         * </p>
         *
         * <p>
         * Note that although the value of the property will not change, the value itself may be a mutable object. Calling
         * this method does not guarantee that the value will become immutable.
         * </p>
         *
         * @since 5.0
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// not currently executing user code. The stack is not owned.
    	_Grunnable // 1
    
    	// _Grunning means this goroutine may execute user code. The
    	// stack is owned by this goroutine. It is not on a run queue.
    	// It is assigned an M and a P (g.m and g.m.p are valid).
    	_Grunning // 2
    
    	// _Gsyscall means this goroutine is executing a system call.
    	// It is not executing user code. The stack is owned by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

    import java.util.List;
    import java.util.Set;
    
    /**
     * Immutable metadata for a component variant instance that is used to perform dependency graph resolution.
     *
     * <p>Note that this metadata does not provide any information about the available artifacts of this variants, as this may be expensive to resolve.
     * Information about the artifacts can be accessed via the methods of {@link ComponentGraphResolveState}.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kube/krt/core.go

    // we only expose some functions to external users for simplicity.
    type internalCollection[T any] interface {
    	Collection[T]
    
    	// Name is a human facing name for this collection.
    	// Note this may not be universally unique
    	name() string
    	// Uid is an internal unique ID for this collection. MUST be globally unique
    	uid() collectionUID
    
    	dump()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    Critically, the CA must enforce that the ztunnel has permission to request that identity.
    Requests for identities not running on the node are rejected.
    This is critical to ensure that a compromised node does not compromise the entire mesh.
    
    This CA enforcement is done by Istio's CA, and is a requirement for any alternative CAs integrating with Ztunnel.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top