Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 492 for fetches (0.16 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      // _Arg nodes in a top-level function represent feeds and _Retval nodes in a
      // top-level function represent fetches.
      if (stack_depth == 1 &&
          (node.type_string() == "_Arg" || node.type_string() == "_Retval")) {
        absl::string_view uncompilable_reason = "top level _Arg or _Retval";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

          tf_executor.fetch %out : tensor<1xi64>
        }
        return
      }
    
      func.func @main() attributes {tf.entry_function = {inputs = "", outputs = ""}, tf_saved_model.exported_names = ["main"]} {
        tf_executor.graph {
          tf_executor.fetch
        }
        return
      }
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/CharSource.java

       *
       * <p>Note: The input {@code Iterator} will be copied to an {@code ImmutableList} when this method
       * is called. This will fail if the iterator is infinite and may cause problems if the iterator
       * eagerly fetches data for each source when iterated (rather than producing sources that only
       * load data through their streams). Prefer using the {@link #concat(Iterable)} overload if
       * possible.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/ByteSource.java

       *
       * <p>Note: The input {@code Iterator} will be copied to an {@code ImmutableList} when this method
       * is called. This will fail if the iterator is infinite and may cause problems if the iterator
       * eagerly fetches data for each source when iterated (rather than producing sources that only
       * load data through their streams). Prefer using the {@link #concat(Iterable)} overload if
       * possible.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join.go

    	return j.outputWriter
    }
    
    // PatchesDir returns the folder where patches for components are stored
    func (j *joinData) PatchesDir() string {
    	// If provided, make the flag value override the one in config.
    	if len(j.patchesDir) > 0 {
    		return j.patchesDir
    	}
    	if j.cfg.Patches != nil {
    		return j.cfg.Patches.Directory
    	}
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/tfcompile_test.cc

    }
    
    TEST(TFCompileTest, LookupNameIndex) {
      // add doesn't have any names defined in its config.
      AddComp add;
      EXPECT_FALSE(add.HasNameIndices());
    
      // muladd has names defined for all feeds and fetches.
      ::foo::bar::MatMulAndAddComp muladd;
      EXPECT_TRUE(muladd.HasNameIndices());
    
      EXPECT_EQ(muladd.LookupArgIndex("x"), 0);
      EXPECT_EQ(muladd.LookupArgIndex("y"), 1);
      EXPECT_EQ(muladd.LookupArgIndex(""), -1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. cmd/bucket-policy-handlers_test.go

    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testGetBucketPolicyHandler, endpoints: []string{"PutBucketPolicy", "GetBucketPolicy"}})
    }
    
    // testGetBucketPolicyHandler - Test for end point which fetches the access policy json of the given bucket.
    func testGetBucketPolicyHandler(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    			cb.req.Push.AddMetric(model.DuplicatedClusters, c.Name, cb.proxyID,
    				fmt.Sprintf("Duplicate cluster %s found while pushing CDS", c.Name))
    		}
    	}
    	return out
    }
    
    // getAllCachedSubsetClusters either fetches all cached clusters for a given key (there may be multiple due to subsets)
    // and returns them along with allFound=True, or returns allFound=False indicating a cache miss. In either case,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry.go

    	if hasDefaultProvider {
    		// todo: what do we want to do with more than one default provider?
    		// for now, use only the first provider.
    		fetched := t.fetchProvider(providerNames[0])
    		clientSpec.Provider = fetched
    		serverSpec.Provider = fetched
    	}
    
    	for _, m := range ct.Tracing {
    		names := getProviderNames(m.Providers)
    
    		specs := []*TracingSpec{&clientSpec, &serverSpec}
    		if m.Match != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/CharSource.java

       *
       * <p>Note: The input {@code Iterator} will be copied to an {@code ImmutableList} when this method
       * is called. This will fail if the iterator is infinite and may cause problems if the iterator
       * eagerly fetches data for each source when iterated (rather than producing sources that only
       * load data through their streams). Prefer using the {@link #concat(Iterable)} overload if
       * possible.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top