Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for Grappler (0.13 sec)

  1. cmd/storage-rest-client.go

    }
    
    // Retrieve location indexes.
    func (client *storageRESTClient) GetDiskLoc() (poolIdx, setIdx, diskIdx int) {
    	return client.endpoint.PoolIdx, client.endpoint.SetIdx, client.endpoint.DiskIdx
    }
    
    // Wrapper to restClient.Call to handle network errors, in case of network error the connection is disconnected
    // and a healthcheck routine gets invoked that would reconnect.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains the Go wrapper for the constant-time, 64-bit assembly
    // implementation of P256. The optimizations performed here are described in
    // detail in:
    // S.Gueron and V.Krasnov, "Fast prime field elliptic-curve cryptography with
    //                          256-bit primes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. tests/integration/README.md

                // Use the component.
                // Apply Kubernetes Config
                ctx.ApplyConfigOrFail(ctx, nil, mycfg)
    
                // Do more stuff here.
            }
    }
    ```
    
    The `framework.TestContext` is a wrapper around the underlying `testing.T` and implements the same interface. Test code
    should generally not interact with the `testing.T` directly.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/runtime/cgocall.go

    type cgoCallers [32]uintptr
    
    // argset matches runtime/cgo/linux_syscall.c:argset_t
    type argset struct {
    	args   unsafe.Pointer
    	retval uintptr
    }
    
    // wrapper for syscall package to call cgocall for libc (cgo) calls.
    //
    //go:linkname syscall_cgocaller syscall.cgocaller
    //go:nosplit
    //go:uintptrescapes
    func syscall_cgocaller(fn unsafe.Pointer, args ...uintptr) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/runtime/asm_arm64.s

    	DISPATCH(runtime·call536870912, 536870912)
    	DISPATCH(runtime·call1073741824, 1073741824)
    	MOVD	$runtime·badreflectcall(SB), R0
    	B	(R0)
    
    #define CALLFN(NAME,MAXSIZE)			\
    TEXT NAME(SB), WRAPPER, $MAXSIZE-48;		\
    	NO_LOCAL_POINTERS;			\
    	/* copy arguments to stack */		\
    	MOVD	stackArgs+16(FP), R3;			\
    	MOVWU	stackArgsSize+24(FP), R4;		\
    	ADD	$8, RSP, R5;			\
    	BIC	$0xf, R4, R6;			\
    	CBZ	R6, 6(PC);			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				return createKubeConfigFiles(outDir, cfg, "unknown.conf")
    			},
    			expectedError: true,
    		},
    		{ // Test CreateJoinControlPlaneKubeConfigFiles (wrapper to createKubeConfigFile)
    			name:                     "CreateJoinControlPlaneKubeConfigFiles",
    			createKubeConfigFunction: CreateJoinControlPlaneKubeConfigFiles,
    			expectedFiles: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    	DISPATCH(runtime·call536870912, 536870912)
    	DISPATCH(runtime·call1073741824, 1073741824)
    	MOVD	$runtime·badreflectcall(SB), R12
    	MOVD	R12, CTR
    	BR	(CTR)
    
    #define CALLFN(NAME,MAXSIZE)			\
    TEXT NAME(SB), WRAPPER, $MAXSIZE-48;		\
    	NO_LOCAL_POINTERS;			\
    	/* copy arguments to stack */		\
    	MOVD	stackArgs+16(FP), R3;			\
    	MOVWZ	stackArgsSize+24(FP), R4;			\
    	MOVD    R1, R5;				\
    	CMP	R4, $8;				\
    	BLT	tailsetup;			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    	stopChan           chan struct{}
    	downstream         adsStream
    	upstream           DiscoveryClient
    	downstreamDeltas   DeltaDiscoveryStream
    	upstreamDeltas     DeltaDiscoveryClient
    }
    
    // sendRequest is a small wrapper around sending to con.requestsChan. This ensures that we do not
    // block forever on
    func (con *ProxyConnection) sendRequest(req *discovery.DiscoveryRequest) {
    	con.requestsChan.Put(req)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    	// ValidationAnalyzer doesn't have any of its own logic, it just wraps the schema validation.
    	// We assume that detailed testing for schema validation is being done elsewhere.
    	// Testing the ValidationAnalyzer as a wrapper is done in a separate unit test.)
    	`schema\.ValidationAnalyzer\.*`,
    }
    
    // TestAnalyzers allows for table-based testing of Analyzers.
    func TestAnalyzers(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_cache]]
    = Build Cache
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top