Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for addLink (0.22 sec)

  1. android/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: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	TestmainGo        *[]byte              // content for _testmain.go
    	Embed             map[string][]string  // //go:embed comment mapping
    	OrigImportPath    string               // original import path before adding '_test' suffix
    	PGOProfile        string               // path to PGO profile
    	ForMain           string               // the main package if this package is built specifically for it
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        PredOpTrait<"output and padding value must have same element type",
          TCresVTEtIsSameAsOpBase<0, 2>>,
        Pure]> {
      let summary = "Dilation operator";
    
      let description = "Extends a tensor by adding new elements between the existing ones.";
    
      let arguments = (ins
         TFL_TensorOf<[I8, I16, I32, I64, UI8, UI16, UI32, UI64, F32, F64]>:$input,
         TFL_TensorOf<[I32]>:$dilations,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/ld/data.go

    	}
    	sdata.SetLocal(true)
    	sdata.SetType(sym.SRODATA)
    	sdata.SetSize(int64(len(str)))
    	sdata.SetData([]byte(str))
    	s.AddAddr(ctxt.Arch, sdata.Sym())
    	s.AddUint(ctxt.Arch, uint64(len(str)))
    }
    
    func addinitarrdata(ctxt *Link, ldr *loader.Loader, s loader.Sym) {
    	p := ldr.SymName(s) + ".ptr"
    	sp := ldr.CreateSymForUpdate(p, 0)
    	sp.SetType(sym.SINITARR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

    # accepts only one argument (docker options)
    function addockeropt {
    	DOCKER_OPTS_FILE=/etc/docker/daemon.json
    	if [ "$#" -lt 1 ]; then
    	echo "No arguments are passed while adding docker options. Expect one argument"
    	exit 1
    	elif [ "$#" -gt 1 ]; then
    	echo "Only one argument is accepted"
    	exit 1
    	fi
    	# appends the given input to the docker opts file i.e. /etc/docker/daemon.json file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. 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)
Back to top