Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 559 for respective (0.2 sec)

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

      void runOnOperation() override;
    };
    
    // Finds an AssignVariableOp that can be moved into the parallel_execute region.
    // These AssignVariableOps must be the only consumer of the respective
    // parallel_execute result, and the resource handle producer must be from an op
    // before or above the parallel_execute.
    TF::AssignVariableOp GetSingleUseResourceWrite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    	// through a type parameter is detected, killCycles nils out the respective type
    	// (in the inferred list) which kills the cycle, and marks the corresponding type
    	// parameter as not inferred.
    	//
    	// TODO(gri) If useful, we could report the respective cycle as an error. We don't
    	//           do this now because type inference will fail anyway, and furthermore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. docs/bucket/retention/README.md

    ## Concepts
    
    - If an object is under legal hold, it cannot be deleted unless the legal hold is explicitly removed for the respective version id. DeleteObjectVersion() would fail otherwise.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. src/go/types/typeparam.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    import "sync/atomic"
    
    // Note: This is a uint32 rather than a uint64 because the
    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    import "sync/atomic"
    
    // Note: This is a uint32 rather than a uint64 because the
    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/multi_version_revision_test.go

    					revision:  rev,
    					namespace: ns,
    				})
    			}
    
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    			builder := deployment.New(t)
    
    			for _, ns := range revisionedNamespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   fmt.Sprintf("revision-%s", ns.revision),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/go/ast/scope.go

    //
    // The Data fields contains object-specific data:
    //
    //	Kind    Data type         Data value
    //	Pkg     *Scope            package scope
    //	Con     int               iota for the respective declaration
    //
    // Deprecated: The relationship between Idents and Objects cannot be
    // correctly computed without type information. For example, the
    // expression T{K: 0} may denote a struct, map, slice, or array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      int num_part_ops = 0;
      int num_partitions_after = 0;
      int num_partitions_before = 0;
      int num_unscheduled_ops = 0;
    
      bool scheduled_everything = true;
      // Unscheduled operations and their respective partitions.
      llvm::DenseMap<Operation *, int> unscheduled_ops;
    
      // Mark all operations as unscheduled and precompute the partition
      // to which they belong.
      bool prev_part = false;
      for (Operation &op : ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/crypto/x509/root_unix_test.go

    			}
    		})
    	}
    }
    
    // Ensure that "SSL_CERT_DIR" when used as the environment
    // variable delimited by colons, allows loadSystemRoots to
    // load all the roots from the respective directories.
    // See https://golang.org/issue/35325.
    func TestLoadSystemCertsLoadColonSeparatedDirs(t *testing.T) {
    	origFile, origDir := os.Getenv(certFileEnv), os.Getenv(certDirEnv)
    	origCertFiles := certFiles[:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // Base, Script or Region. The returned Coverage derives the value for Bases
    // from Tags if no func or slice for []Base is specified. For other unspecified
    // types the returned Coverage will return nil for the respective methods.
    func NewCoverage(list ...interface{}) Coverage {
    	s := &coverage{}
    	for _, x := range list {
    		switch v := x.(type) {
    		case func() []Base:
    			s.bases = v
    		case func() []Script:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top