Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for Esterror (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

        }
    
        @Override
        public void execute(ExecutionResult executionResult) {
            String normalizedOutput = executionResult.getNormalizedOutput();
            String error = executionResult.getError();
            boolean executionFailure = executionResult instanceof ExecutionFailure;
    
            // for tests using rich console standard out and error are combined in output of execution result
            if (executionFailure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         *
         * <p>You should avoid using this method as it couples the tests to a particular layout for the console. Instead use the more descriptive assertion methods.</p>
         */
        String getError();
    
        /**
         * Retrieves the first output line that contains the passed in text.
         *
         * Fails with an assertion if no output line contains the given text.
         *
         * @param text the text to match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		if !SafeArg(file) || strings.HasPrefix(file, "_cgo_") {
    			setError(fmt.Errorf("invalid input file name %q", file))
    			return
    		}
    	}
    	if name := pathpkg.Base(p.ImportPath); !SafeArg(name) {
    		setError(fmt.Errorf("invalid input directory name %q", name))
    		return
    	}
    	if strings.ContainsAny(p.Dir, "\r\n") {
    		setError(fmt.Errorf("invalid package directory %q", p.Dir))
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_pod_control_test.go

    			t.Errorf("Found unexpected non-warning event %s", events[i])
    		}
    	}
    }
    
    type fakeIndexer struct {
    	cache.Indexer
    	getError error
    }
    
    func (f *fakeIndexer) GetByKey(key string) (interface{}, bool, error) {
    	return nil, false, f.getError
    }
    
    func TestStatefulPodControlCreatePodPvcGetFailure(t *testing.T) {
    	recorder := record.NewFakeRecorder(10)
    	set := newStatefulSet(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_static_test.go

    		t.Run(testCase.description, func(t *testing.T) {
    			opts, err := NewStaticPolicyOptions(testCase.policyOptions)
    			gotError := (err != nil)
    			if gotError != testCase.expectedError {
    				t.Fatalf("error with args %v expected error %v got %v: %v",
    					testCase.policyOptions, testCase.expectedError, gotError, err)
    			}
    
    			if testCase.expectedError {
    				return
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            } else {
                resolution = matcher.group(1).trim();
            }
        }
    
        @Override
        public ExecutionFailure getIgnoreBuildSrc() {
            return new OutputScrapingExecutionFailure(getOutput(), getError(), false);
        }
    
        @Override
        public LogContent getMainContent() {
            return mainContent;
        }
    
        private Problem extract(String problem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/manager.go

    			reqClaim := lookupClaimRequest(claims, claimUID)
    			if reqClaim == nil {
    				return fmt.Errorf("NodePrepareResources returned result for unknown claim UID %s", claimUID)
    			}
    			if result.GetError() != "" {
    				return fmt.Errorf("NodePrepareResources failed for claim %s/%s: %s", reqClaim.Namespace, reqClaim.Name, result.Error)
    			}
    
    			claim := resourceClaims[types.UID(claimUID)]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	PreFilterMsg string
    	// PostFilterMsg records the messages returned from PostFilter plugins.
    	PostFilterMsg string
    }
    
    // FitError describes a fit error of a pod.
    type FitError struct {
    	Pod         *v1.Pod
    	NumAllNodes int
    	Diagnosis   Diagnosis
    }
    
    const (
    	// NoNodeAvailableMsg is used to format message when no nodes available.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                outputResult.assertHasErrorOutput(expectedOutput);
                return this;
            }
    
            @Override
            public String getError() {
                return outputResult.getError();
            }
    
            @Override
            public String getOutputLineThatContains(String text) {
                return outputResult.getOutputLineThatContains(text);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. src/crypto/tls/ticket.go

    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    					b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    						b.AddBytes(cert.Raw)
    					})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top