Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for cheese (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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
    - 149.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    					data.p.Root = info.Dir
    				}
    			}
    			if r.err != nil {
    				if data.err != nil {
    					// ImportDir gave us one error, and the module loader gave us another.
    					// We arbitrarily choose to keep the error from ImportDir because
    					// that's what our tests already expect, and it seems to provide a bit
    					// more detail in most cases.
    				} else if errors.Is(r.err, imports.ErrNoGo) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                "$_op, llvm::ArrayRef<unsigned>({" # !interleave(indices, ", ") #
                "}), " # max_bcast_rank # ")">>;
    
    // These additional types/type constraints here are used to decouple the ops
    // from runtime support for the ops. Prefer to use these types when defining
    // new TF_Ops for uniformity.
    
    // TFL Runtime type predicate.
    class TFL_RuntimeType<TypeConstraint t> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    	// Reasonable size range of all container images. 90%ile of images on dockerhub drops into this range.
    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // Note: Build adheres to certain conventions such as those described
    // by 'go help gopath'. Not all projects can follow these conventions,
    // however. Installations that have their own conventions or that use
    // a separate software build system may choose to use lower-level
    // invocations such as 'go tool compile' and 'go tool link' to avoid
    // some of the overheads and design decisions of the build tool.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(server.takeRequest().sequenceNumber).isEqualTo(2)
      }
    
      /**
       * Each OkHttpClient used to get its own instance of NullProxySelector, and because these weren't
       * equal their connections weren't pooled. That's a nasty performance bug!
       *
       * https://github.com/square/okhttp/issues/5519
       */
      @Test
      fun connectionPoolingWithFreshClientSamePool() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top