Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for cheese (0.1 sec)

  1. src/runtime/map.go

    						// match whatever decision the iterator made.
    						// Fortunately, we have the freedom to send these keys either
    						// way. Also, tophash is meaningless for these kinds of keys.
    						// We let the low bit of tophash drive the evacuation decision.
    						// We recompute a new random tophash for the next level so
    						// these keys will get evenly distributed across all buckets
    						// after multiple grows.
    						useY = top & 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    						{Name: "container2"},
    					},
    				},
    				Status: api.PodStatus{},
    			},
    			opts:              &api.PodLogOptions{},
    			expectedErr:       errors.NewBadRequest("a container name must be specified for pod test, choose one of: [container1 container2]"),
    			expectedTransport: nil,
    		},
    		{
    			name: "initcontainers",
    			in: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: fakePodName},
    				Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    unable to identify the Shape of these args and thus the input TensorList
    shape is unidentifiable.
    All of these args are supposed to be independent and not related to original
    creation of TensorList.
    
    This pass will create multiple instances of TensorList for each arg of the
    while op and each use and thus there will be not a conflict in resolving the
    shape of these different inputs.
    ### `-tf-replicate-to-island`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Let’s now look at how you can register task properties as inputs and outputs.
    
    [[sec:task_input_output_annotations]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

        # -------------------------
        # if storage.path is set, Fluent Bit will look for data chunks that were
        # not delivered and are still in the storage layer, these are called
        # backlog data. This option configure a hint of maximum value of memory
        # to use when processing these records.
        #
        # storage.backlog.mem_limit 5M
    
    [INPUT]
        Name         winlog
        Interval_Sec 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		}).run(t)
    	})
    }
    
    func (t *tester) registerTests() {
    	// registerStdTestSpecially tracks import paths in the standard library
    	// whose test registration happens in a special way.
    	//
    	// These tests *must* be able to run normally as part of "go test std cmd",
    	// even if they are also registered separately by dist, because users often
    	// run go test directly. Use skips or build tags in preference to expanding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // You can use these names in --gtest_filter.
    //
    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

     * environment if possible) before spending a lot of effort on tweaking a particular element.
     *
     * <h3>Other types of preconditions</h3>
     *
     * <p>Not every type of precondition failure is supported by these methods. Continue to throw
     * standard JDK exceptions such as {@link java.util.NoSuchElementException} or {@link
     * UnsupportedOperationException} in the situations they are intended for.
     *
     * <h3>Non-preconditions</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/time/time.go

    // for 2401-2800.
    //
    // Finally, it's convenient if the delta between the Unix epoch and
    // long-ago epoch is representable by an int64 constant.
    //
    // These three considerations—choose an epoch as early as possible, that
    // uses a year equal to 1 mod 400, and that is no more than 2⁶³ seconds
    // earlier than 1970—bring us to the year -292277022399. We refer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top