Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for cheese (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (auto map_dataset_op = dyn_cast<MapDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
        return InferShapeForMapDataset(map_dataset_op, max_iterations);
      }
    
      if (auto takewhile_dataset_op = dyn_cast<TakeWhileDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
        return InferShapeForTakeWhileDataset(takewhile_dataset_op, max_iterations);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        testRequestMethod("GET", true)
      }
    
      @Test
      fun requestMethodHeadIsNotCached() {
        // We could support this but choose not to for implementation simplicity
        testRequestMethod("HEAD", false)
      }
    
      @Test
      fun requestMethodPostIsNotCached() {
        // We could support this but choose not to for implementation simplicity
        testRequestMethod("POST", false)
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    		// Because these are clumsy, undocumented special-case hacks
    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          xla_cluster_name, then_branch_host_func_name, fld));
      TF_RETURN_IF_ERROR(ReplaceKeyPlaceholderWithArgNode(
          xla_cluster_name, else_branch_host_func_name, fld));
    
      // Step 4: build If node to choose between `{then, else}_branch_host_graph`.
      NodeDefBuilder if_builder(absl::StrCat("oc_if_", if_node_name), "If");
      if_builder.Attr("Tcond", DT_BOOL);
      if_builder.Attr("Tin", std::vector<DataType>{DT_STRING});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            //  - extraAttribute=preferred
            // 2) secondary -> B -> requested
            //  - artifactType=final
    
            // Both of these potential transforms are compatible, except (1) has a favorable attribute set
            // with respect to the attribute schema. However, we want to choose (2) since it is the shorter chain.
    
            buildFile << """
                project(':lib') {
                    task jar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    	//
    	// The DaemonSet should not schedule pods and should not delete scheduled pods in
    	// this case even though it's empty pod selector matches all pods. The DaemonSetController
    	// should detect this misconfiguration and choose not to sync the DaemonSet. We should
    	// not observe a deletion of the pod on node1.
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          // This op is used to compute the gradient dimensions requiring reduction
          // to match the input dimensions. In case both the dimensions are one,
          // reducing the dimension has no effect. We choose to reduce such
          // dimensions to match the TensorFlow kernel behavior. However, note that
          // the TF behavior in this case is inconsistent with the case with the
          // same shapes.
          r0.push_back(idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	}
    	for i, tt := range tests {
    		if got := fmt.Sprint(InsecureAlgorithmError(tt.sa)); got != tt.want {
    			t.Errorf("%d. mismatch.\n got: %s\nwant: %s\n", i, got, tt.want)
    		}
    	}
    }
    
    // These CSR was generated with OpenSSL:
    //
    //	openssl req -out CSR.csr -new -sha256 -nodes -keyout privateKey.key -config openssl.cnf
    //
    // With openssl.cnf containing the following sections:
    //
    //	[ v3_req ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

      // Fields
    
      static final Logger logger = Logger.getLogger(LocalCache.class.getName());
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Returns true if the module holds all the invariants expected by the
    // Translator class.
    // TODO(hinsu): Now that translation is done by making a single pass over the
    // MLIR module, consider inlining these validation checks at the place where
    // these invariants are assumed instead of checking upfront.
    static bool IsValidTFLiteMlirModule(ModuleOp module) {
      MLIRContext* context = module.getContext();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top