Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for cheese (0.25 sec)

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

    	// If a validation evaluates to false it is always enforced according to these actions.
    	//
    	// Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
    	// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final transient int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    //
    // It assumes the gen value passed to it is monotonically increasing across calls.
    //
    // If any error is returned, then the trace is broken and trace parsing must cease.
    // If it's not valid to advance with ev, but no error was encountered, the caller
    // should attempt to advance with other candidate events from other threads. If the
    // caller runs out of candidates, the trace is invalid.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
    
            // Set the implicit system properties regardless of whether default JVM args are required or not, this should not interfere with tests' intentions
            // These will also be copied across to any daemon used
            for (Map.Entry<String, String> entry : getImplicitJvmSystemProperties().entrySet()) {
                String key = entry.getKey();
                String value = entry.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	OPCODE_BASE = 11
    )
    
    /*
     * Walk prog table, emit line program and build DIE tree.
     */
    
    func getCompilationDir() string {
    	// OSX requires this be set to something, but it's not easy to choose
    	// a value. Linking takes place in a temporary directory, so there's
    	// no point including it here. Paths in the file table are usually
    	// absolute, in which case debuggers will ignore this value. -trimpath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      auto backward_caller_im2 = body_builder.clone(*backward_caller);
      backward_caller_im2->setOperands(b_operands);
    
      //
      // Finish step i-1
      //
      // Second, add all the inputs to core_tpu(). Thesse all come from the while
      // loop opernads, sc_forward() or non_tpu() and need to be pulled from the
      // "i-1" (or "1") version of the inputs.
      std::vector<Value> t_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    > password            (string)             database password (used only if `connection_string` is empty)
    > database            (string)             database name (used only if `connection_string` is empty)
    > ```
    >
    > These are now deprecated, if you plan to upgrade to any releases after _RELEASE.2020-04-10T03-34-42Z_ make sure
    > to migrate to only using _connection_string_ option. To migrate, once you have upgraded all the servers use the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// the requested amount of items (up to zero items) in the event all requested objects are
    	// filtered out and clients should only use the presence of the continue field to determine whether
    	// more results are available. Servers may choose not to support the limit argument and will return
    	// all of the available results. If limit is specified and the continue field is empty, clients may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. pkg/kubelet/pod_workers.go

    // until it returns no error. Then the SyncTerminatedPod method is invoked until it exits without
    // error, and the pod is considered terminal. Implementations of this interface must be threadsafe
    // for simultaneous invocation of these methods for multiple pods.
    type podSyncer interface {
    	// SyncPod configures the pod and starts and restarts all containers. If it returns true, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                severity,
                                version,
                                prefix + fieldName,
                                sourceHint,
                                "must not contain any of these characters " + banned + " but found " + string.charAt(i),
                                tracker);
                        return false;
                    }
                }
            }
    
            return true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top