Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for addOne (0.61 sec)

  1. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    	tweakableRM.Add(schema.GroupVersionKind{Group: "tpr.io", Version: "v1", Kind: "unknown"}, nil)
    	err = gc.resyncMonitors(logger, twoResources)
    	if err != nil {
    		t.Errorf("Failed adding a monitor: %v", err)
    	}
    	assert.Equal(t, 2, len(gc.dependencyGraphBuilder.monitors))
    
    	err = gc.resyncMonitors(logger, podResource)
    	if err != nil {
    		t.Errorf("Failed removing a monitor: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return nil, cleanupAction, err
    	}
    	opts.Mounts = append(opts.Mounts, mounts...)
    
    	// adding TerminationMessagePath on Windows is only allowed if ContainerD is used. Individual files cannot
    	// be mounted as volumes using Docker for Windows.
    	if len(container.TerminationMessagePath) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

    ^bb0(%arg0: tensor<? x f32>, %arg1: tensor<? x f32>, %arg2: tensor<? x f32>):
      // CHECK: "tfl.add_n"(%arg0, %arg1, %arg2)
      %0 = "tfl.add_n"(%arg0, %arg1, %arg2): (tensor<? x f32>, tensor<? x f32>, tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    // test invalid AddN
    func.func @testAddNWrongOperandResultType(tensor<? x f16>, tensor<? x f16>, tensor<? x f16>) -> tensor<? x f16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	REG_NOTIFY_CHANGE_ATTRIBUTES = 0x00000002
    
    	// REG_NOTIFY_CHANGE_LAST_SET notifies the caller of changes to a value of the key. This can include adding or deleting a value, or changing an existing value.
    	REG_NOTIFY_CHANGE_LAST_SET = 0x00000004
    
    	// REG_NOTIFY_CHANGE_SECURITY notifies the caller of changes to the security descriptor of the key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    //
    // Consider a [ServeMux] with a handler for a subtree, registered using a trailing slash or "..." wildcard.
    // If the ServeMux receives a request for the subtree root without a trailing slash,
    // it redirects the request by adding the trailing slash.
    // This behavior can be overridden with a separate registration for the path without
    // the trailing slash or "..." wildcard. For example, registering "/images/" causes ServeMux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                              key_placeholder));
      for (auto* n : arg_nodes) {
        int index;
        TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        // Record out edges and remove `n` before adding those edges to RecvAtHost.
        // This is to avoid multiple producers.
        std::vector<OutEdgeInfo> out_edge_info;
        out_edge_info.reserve(n->out_edges().size());
        for (auto edge : n->out_edges()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    A web-based, searchable dependency report is available by adding the --scan option.
    """
        }
    
        def "renders multiple rejected modules"() {
            given:
            mavenRepo.module("org", "foo", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        if [ "$(uname -s)" == "Darwin" ]; then
          # We want this print just the way it is
          # shellcheck disable=SC2016
          echo 'On macOS we recommend using homebrew and adding "$(brew --prefix openssl)/bin" to your PATH'
        fi
        exit 1
      fi
    
      # we use gcloud to create the cluster, gsutil to stage binaries and data
      for cmd in gcloud gsutil; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top