Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,361 for rescorer (0.16 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name: "one PreScore plugin returned success, but another PreScore plugin returned non-success",
    			plugins: []*TestPlugin{
    				{
    					name: "success",
    				},
    				{
    					name: "error",
    					inj:  injectedResult{PreScoreStatus: int(framework.Error)},
    				},
    			},
    			wantStatusCode: framework.Error,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/io_ops.cc

    //   Relying on this behavior is not recommended, as the ability to fall back to
    //   read V1 might be deprecated and eventually removed.
    //
    //   By default, restores the named tensors in full.  If the caller wishes to
    //   restore specific slices of stored tensors, "shape_and_slices" should be
    //   non-empty strings and correspondingly well-formed.
    //
    //   Callers must ensure all the named tensors are indeed stored in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            expect: 'convention mapping is ignored'
            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
            withConventionMappingForPropertyOfType String, '"42"'
            buildFile << '''
                tasks.named("ok") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	testCases := []struct {
    		description       string
    		checkpointContent string
    		expectedError     string
    		expectedState     *stateMemory
    	}{
    		{
    			"Restore non-existing checkpoint",
    			"",
    			"",
    			&stateMemory{},
    		},
    		{
    			"Restore valid checkpoint",
    			`{
    				"policyName":"static",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/sigaltstack.go

    	// This is OK since we allocated this much space in mpreinit,
    	// it was just removed from the buffer by stackalloc.
    	oss.ss_size = MINSIGSTKSZ;
    #endif
    	if (sigaltstack(&oss, NULL) < 0) {
    		perror("sigaltstack restore");
    		abort();
    	}
    }
    
    static int zero(void) {
    	return 0;
    }
    */
    import "C"
    
    import (
    	"runtime"
    	"testing"
    )
    
    func testSigaltstack(t *testing.T) {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/append-single-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 46 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    }
    
    // simple recorder that only appends warning
    type recorder struct {
    	mu       sync.Mutex
    	warnings []*cacheWarning
    }
    
    // AddWarning adds a warning to recorder.
    func (r *recorder) AddWarning(agent, text string) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	r.warnings = append(r.warnings, &cacheWarning{agent: agent, text: text})
    }
    
    func (r *recorder) extractWarnings() []*cacheWarning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/runtime/debugcall.go

    			// Not at a safe point.
    			ret = debugCallUnsafePoint
    		}
    	})
    	return ret
    }
    
    // debugCallWrap starts a new goroutine to run a debug call and blocks
    // the calling goroutine. On the goroutine, it prepares to recover
    // panics from the debug call, and then calls the call dispatching
    // function at PC dispatch.
    //
    // This must be deeply nosplit because there are untyped values on the
    // stack from debugCallV2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/sigstack.go

    		// Darwin libsystem has a bug where it checks ss_size
    		// even if SS_DISABLE is set. (The kernel gets it right.)
    		ost.ss_size = CSIGSTKSZ;
    	}
    	if (sigaltstack(&ost, NULL) < 0) {
    		perror("sigaltstack restore failed");
    		abort();
    	}
    	mprotect(base, CSIGSTKSZ, PROT_NONE);
    	return NULL;
    }
    
    static void* WithoutSigStack(void* arg __attribute__((unused))) {
    	SigStackCallback();
    	return NULL;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libexport/load.h

      // Retrieves a specific GraphDef node by name.
      //
      // GraphDef nodes are stored as a repeating list of nodes.  At module load
      // time, a module may have constants that need to be restored.  To restore
      // these constants, they are looked up in the GraphDef's nodes by their name.
      // Since we may need to load many constants, we create a hash map of these
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top