Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 640 for IsSame (0.08 sec)

  1. operator/pkg/helmreconciler/wait.go

    	var notReady []string
    	for _, ds := range daemonsets {
    		// Check if the wanting generation is same as the observed generation
    		// Only when the observed generation is the same as the generation,
    		// other checks will make sense. If not the same, daemon set is not
    		// ready
    		if ds.Status.ObservedGeneration != ds.Generation {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/internal/xcoff/xcoff.go

    	F_FDPR_OPTI = 0x0020
    	F_DSA       = 0x0040
    	F_VARPG     = 0x0100
    	F_DYNLOAD   = 0x1000
    	F_SHROBJ    = 0x2000
    	F_LOADONLY  = 0x4000
    )
    
    // Section Header.
    type SectionHeader32 struct {
    	Sname    [8]byte // Section name
    	Spaddr   uint32  // Physical address
    	Svaddr   uint32  // Virtual address
    	Ssize    uint32  // Section size
    	Sscnptr  uint32  // Offset in file to raw data for section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    	// hashHead[hashValue] contains the largest inputIndex with the specified hash value
    	// If hashHead[hashValue] is within the current window, then
    	// hashPrev[hashHead[hashValue] & windowMask] contains the previous index
    	// with the same hash value.
    	chainHead  int
    	hashHead   [hashSize]uint32
    	hashPrev   [windowSize]uint32
    	hashOffset int
    
    	// input window: unprocessed data is window[index:windowEnd]
    	index         int
    	window        []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	// Predefined constants in the package implement common layouts.
    	fmt.Println("Unix format:", t.Format(time.UnixDate))
    
    	// The time zone attached to the time value affects its output.
    	fmt.Println("Same, in UTC:", t.UTC().Format(time.UnixDate))
    
    	fmt.Println("in Shanghai with seconds:", t.In(tz).Format("2006-01-02T15:04:05 -070000"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. tensorflow/c/kernels.h

    // has the same lifetime as the OpKernel.
    TF_CAPI_EXPORT extern TF_StringView TF_GetOpKernelName(TF_OpKernelContext* ctx);
    
    // Returns the default container of the resource manager in OpKernelContext.
    //
    // The returned TF_StringView's underlying string is owned by the OpKernel and
    // has the same lifetime as the OpKernel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        SymbolTableCollection& symbol_table, WhileRegionOp while_region) {
      // For While, the arguments of the calls in the body and cond regions match
      // if they are region arguments with the same region argument numbers. If the
      // 2 calls have the same value (an extern value) used as an argument, we
      // cannot do a trivial transformation because post transform, we will need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    	return c
    }
    
    // chanbuf(c, i) is pointer to the i'th slot in the buffer.
    //
    // chanbuf should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/fjl/memsize
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname chanbuf
    func chanbuf(c *hchan, i uint) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    	// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
    	// and the same audit annotation key, the annotation key will be identical.
    	// In this case, the first annotation written with the key will be included
    	// in the audit event and all subsequent annotations with the same key
    	// will be discarded.
    	//
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/main.go

    	commutative       bool   // this operation is commutative on its first 2 arguments (e.g. addition)
    	resultInArg0      bool   // (first, if a tuple) output of v and v.Args[0] must be allocated to the same register
    	resultNotInArgs   bool   // outputs must not be allocated to the same registers as inputs
    	clobberFlags      bool   // this op clobbers flags register
    	needIntTemp       bool   // need a temporary free integer register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    		// depend on the executable's location.
    		return def
    	}
    
    	// canonical returns a directory path that represents
    	// the same directory as dir,
    	// preferring the spelling in def if the two are the same.
    	canonical := func(dir string) string {
    		if isSameDir(def, dir) {
    			return def
    		}
    		return dir
    	}
    
    	exe, err := os.Executable()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top