Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for raerror (0.1 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DocumentResolution.kt

        }
    
        data object ErrorResolution : DocumentNodeResolution, UnsuccessfulResolution {
            override val reasons: Iterable<ResolutionFailureReason>
                get() = listOf(IsError)
        }
    
        sealed interface ValueNodeResolution : DocumentResolution {
            data class LiteralValueResolved(val value: Any) : ValueNodeResolution, SuccessfulResolution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunPreBindPlugins runs the set of configured prebind plugins. It returns a
    // failure (bool) if any of the plugins returns an error. It also returns an
    // error containing the rejection message or the error occurred in the plugin.
    func (f *frameworkImpl) RunPreBindPlugins(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	pluginName := fmt.Sprintf("example-plugin")
    	p := pluginwatcher.NewTestExamplePlugin(pluginName, registerapi.DevicePlugin, socketPath, supportedVersions...)
    	require.NoError(t, p.Serve("v1beta1", "v1beta2"))
    	defer func() {
    		require.NoError(t, p.Stop())
    	}()
    	timestampBeforeRegistration := time.Now()
    	dsw.AddOrUpdatePlugin(socketPath)
    	waitForRegistration(t, socketPath, timestampBeforeRegistration, asw)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

            protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
                mark(in);
                mark(out);
    
                CoderResult coderResult = decoder.decode(in, out, false);
    
                if (coderResult.isError() && utf8) {
                    reset(in);
                    reset(out);
                    // Fallback to the ISO_8859_1 decoder
                    decoder = StandardCharsets.ISO_8859_1.newDecoder();
                    utf8 = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		assert.NoError(t, err, "create tempdir error")
    		defer os.RemoveAll(tempDirPath)
    		for _, filename := range tc.filenames {
    			err = os.WriteFile(filepath.Join(tempDirPath, filename), []byte("a log line"), 0600)
    			assert.NoError(t, err, "could not write log file")
    		}
    		count, err := calcRestartCountByLogDir(tempDirPath)
    		if assert.NoError(t, err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/config/validation_test.go

    		},
    	}
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			err := ValidateOwnerGroups(tc.include, tc.exclude)
    			assert.NoError(t, err)
    		})
    	}
    }
    
    func TestValidateOwnerGroups_Invalid(t *testing.T) {
    	cases := []struct {
    		name    string
    		include string
    		exclude string
    	}{
    		{
    			name:    "capture 65 groups",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pkg/scheduler/testing/framework/fake_extender.go

    }
    
    // ErrorPrioritizerExtender implements PriorityFunc function to always return error.
    func ErrorPrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    	return &framework.NodeScoreList{}, fmt.Errorf("some error")
    }
    
    // Node1PrioritizerExtender implements PriorityFunc function to give score 10
    // if the given node's name is "node1"; otherwise score 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

            when:
            def results = dependencyResolver.resolveGraph(resolveContext)
    
            then:
            def resolvedConfig = results.legacyResults.resolvedConfiguration
            !resolvedConfig.hasError()
            resolvedConfig.rethrowFailure()
    
            resolvedConfig.getFiles(Specs.<Dependency> satisfyAll()).isEmpty()
            resolvedConfig.getFirstLevelModuleDependencies().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. istioctl/pkg/internaldebug/internal-debug_test.go

    	cases := []execTestCase{
    		{ // case 0, no args
    			args:           []string{},
    			noIstiod:       true,
    			expectedOutput: "Error: debug type is required\n",
    			wantException:  true,
    		},
    		{ // case 1, no istiod
    			args:           []string{"adsz"},
    			noIstiod:       true,
    			expectedOutput: "Error: no running Istio pods in \"istio-system\"\n",
    			wantException:  true,
    		},
    		{ // case 2, with Istiod instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
        EXPECT_FALSE(result->IsError());
      }
    }
    
    // Runs a BEF function that batches a function that does nothing just to measure
    // the runtime overhead. The BEF function signature is adapted from a real model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top