Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for remSign (0.16 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // This is an alpha feature and may change or be removed in the future.
      // The field is populated by the apiserver only if the
      // StorageVersionHash feature gate is enabled.
      // This field will remain optional even if it graduates.
      // +optional
      optional string storageVersionHash = 10;
    }
    
    // APIResourceList is a list of APIResource, it is used to expose the name of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // This is an alpha feature and may change or be removed in the future.
      // The field is populated by the apiserver only if the
      // StorageVersionHash feature gate is enabled.
      // This field will remain optional even if it graduates.
      // +optional
      optional string storageVersionHash = 10;
    }
    
    // APIResourceList is a list of APIResource, it is used to expose the name of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		// the assignment will mark the Go stack as uninitialized.
    		// The Go compiler does not update msan for changes to the
    		// stack. It is possible that the stack will remain
    		// uninitialized, and then later be used in a way that is
    		// visible to msan, possibly leading to a false positive.
    		// Mark the stack space as written, to avoid this problem.
    		// See issue 26209.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/runtime/map.go

    // chain order, then bucket index).  To maintain iteration
    // semantics, we never move keys within their bucket (if
    // we did, keys might be returned 0 or 2 times).  When
    // growing the table, iterators remain iterating through the
    // old table and must check the new table if the bucket
    // they are iterating through has been moved ("evacuated")
    // to the new table.
    
    // Picking loadFactor: too large and we have lots of overflow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			// would prefer to use instead of arbitrary versions.
    			return true
    		}
    	}
    
    	// The build list will be the same on the next iteration as it was on this
    	// iteration, so any ambiguous queries will remain so. In order to make
    	// progress, resolve them arbitrarily but deterministically.
    	//
    	// If that results in conflicting versions, the user can re-run 'go get'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // entries (e.g., the return value of TF_GraphGetTensorNumDims).
    //
    // If the number of dimensions in the shape is unknown or the shape is
    // a scalar, `dims` will remain untouched. Otherwise, each element of
    // `dims` will be set corresponding to the size of the dimension. An
    // unknown dimension is represented by `-1`.
    //
    // Returns an error into `status` if:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    		// We're at a point where non-heap memory exceeds the memory limit on its own.
    		// There's honestly not much we can do here but just trigger GCs continuously
    		// and let the CPU limiter reign that in. Something has to give at this point.
    		// Set it to heapMarked, the lowest possible goal.
    		return c.heapMarked
    	}
    
    	// Compute the goal.
    	goal := memoryLimit - (nonHeapMemory + overage)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	ClockGetres(clockid int32, res *Timespec) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error)
    //sys	Close(fd int) (err error)
    //sys	CloseRange(first uint, last uint, flags uint) (err error)
    //sys	CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Relative paths are resolved relative to the project directory, while absolute paths remain unchanged.
    
    [CAUTION]
    ====
    Never use `new File(relative path)` unless passed to `file()` or `files()` or `from()` or other methods defined in terms of `file()` or `files()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top