Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 266 for somme (0.07 sec)

  1. src/cmd/go/internal/modload/load.go

    				mg, err := rs.Graph(ctx)
    				if err != nil {
    					// The module graph is (or may be) incomplete — perhaps we failed to
    					// load the requirements of some module. This is an error in matching
    					// the patterns to packages, because we may be missing some packages
    					// or we may erroneously match packages in the wrong versions of
    					// modules. However, for cases like 'go list -e', the error should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def sideEffect1 = Mock(ValueSupplier.SideEffect)
            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some value", "simple value", "other value"]
    
            when:
            property.add(Providers.of("some value").withSideEffect(sideEffect1))
            property.add(Providers.of("simple value"))
            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    			}
    		})
    	}
    	<-r.work.Idle()
    }
    
    // queryWildcard adds a candidate set to q for each module for which:
    //   - some version of the module is already in the build list, and
    //   - that module exists at some version matching q.version, and
    //   - either the module path itself matches q.pattern, or some package within
    //     the module at q.version matches q.pattern.
    func (r *resolver) queryWildcard(ctx context.Context, q *query) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    TEST_P(ModularFileSystemTest, TestRecursivelyCreateDirFromNestedDir) {
      const std::string parent_path = GetURIForPath("some/path");
      Status status = env_->RecursivelyCreateDir(parent_path);
      if (!status.ok())
        GTEST_SKIP() << "RecursivelyCreateDir() not supported: " << status;
    
      const std::string new_dirpath = GetURIForPath("some/path/that/is/extended");
      status = env_->RecursivelyCreateDir(new_dirpath);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    How does an incremental build work? How can you make sure your tasks support running incrementally? Let’s take a look.
    
    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    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. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Both methods return `FileTree` instances that you can then use in the same way as normal file trees.
    For example, you can extract some or all of the files of an archive by copying its contents to some directory on the file system.
    Or you can merge one archive into another.
    
    Here are some simple examples of creating archive-based file trees:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // optimizations run by PartitionedCall can mutate the cluster arbitrarily,
    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    // the PartitionedCall kernel that tells it to not rerun auto-clustering on the
    // cluster.
    const char* kXlaAlreadyClustered = "_XlaAlreadyClustered";
    
    class MarkForCompilationPassImpl {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    	const fakeConnectionToken = "X-Fake-Connection-Token"
    	const backendResponse = "I am the backend"
    
    	// someConnHeader is some arbitrary header to be declared as a hop-by-hop header
    	// in the Request's Connection header.
    	const someConnHeader = "X-Some-Conn-Header"
    
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if c := r.Header.Get("Connection"); c != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/replica_calculator_test.go

    			targetUsage:   15000,
    			expectedUsage: 20000,
    			singleObject: &autoscalingv2.CrossVersionObjectReference{
    				Kind:       "Deployment",
    				APIVersion: "apps/v1",
    				Name:       "some-deployment",
    			},
    		},
    	}
    	tc.runTest(t)
    }
    
    func TestReplicaCalcScaleUpCMPerPodObject(t *testing.T) {
    	tc := replicaCalcTestCase{
    		currentReplicas:  3,
    		expectedReplicas: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_GLOBAL_STRING  - Define it to 1/0 to indicate that ::string
    //                              is/isn't available (some systems define
    //                              ::string, which is different to std::string).
    //   GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
    //                              is/isn't available (some systems define
    //                              ::wstring, which is different to std::wstring).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top