Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 126 of 126 for connect0 (0.33 sec)

  1. src/runtime/map.go

    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    	if inserti == nil {
    		// The current bucket and all the overflow buckets connected to it are full, allocate a new one.
    		newb := h.newoverflow(t, b)
    		inserti = &newb.tophash[0]
    		insertk = add(unsafe.Pointer(newb), dataOffset)
    		elem = add(insertk, abi.MapBucketCount*uintptr(t.KeySize))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // for a namespace, a default sidecarscope is assigned to the namespace
    // which enables connectivity to all services in the mesh.
    //
    // When proxies connect to Pilot, we identify the sidecar scope associated
    // with the proxy and derive listeners/routes/clusters based on the sidecar
    // scope.
    func (ps *PushContext) initSidecarScopes(env *Environment) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___CONNECT_A<<4, uintptr(s), uintptr(addr), uintptr(addrlen))
    	runtime.ExitSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The `Provider` based APIs are still the recommended way to connect external values to task inputs for maximum configuration cache reuse.
    
    ==== `ConfigurableReport#setDestination(org.gradle.api.provider.Provider<java.io.File>)` has been deprecated
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    }
    ```
    ### `-tf-executor-graph-pruning`
    
    _Prunes unreachable ops in a tf_executor.graph_
    
    This pass removes ops from a `tf_executor.graph` that are not transitively, via
    data or control dependencies, connected to the associated `tf_executor.fetch`
    op. The order of ops will be preserved. Functions named `main` with no
    `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    	// increases the probability that we will stabilize quickly.
    	// TODO: Do a better job yet. Here's one possibility:
    	// Calculate the dominator tree and locate all strongly connected components.
    	// If a value is live in one block of an SCC, it is live in all.
    	// Walk the dominator tree from end to beginning, just once, treating SCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top