Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 207 for nfail (0.06 sec)

  1. src/cmd/go/go_test.go

    		break
    	}
    	if hostLinkLine == "" {
    		t.Fatal(`fail to find with "host link:" string in linker output`)
    	}
    	// Find parameter, like "/tmp/go-link-408556474/go.o" inside of
    	// "host link:" line, and extract temp directory /tmp/go-link-408556474
    	// out of it.
    	tmpdir := hostLinkLine
    	i := strings.Index(tmpdir, `go.o"`)
    	if i == -1 {
    		t.Fatalf(`fail to find "go.o" in "host link:" line %q`, hostLinkLine)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    			// This type of job is complete when any pod exits with success.
    			// Each pod is capable of
    			// determining whether or not the entire Job is done.  Subsequent pods are
    			// not expected to fail, but if they do, the failure is ignored.  Once any
    			// pod succeeds, the controller waits for remaining pods to finish, and
    			// then the job is complete.
    			complete = jobCtx.succeeded > 0 && active == 0
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	if err != nil {
    		// We are missing some root dependency, and for some reason we can't load
    		// enough of the module dependency graph to add the missing root. Package
    		// loading is doomed to fail, so fail quickly.
    		ld.error(err)
    		ld.exitIfErrors(ctx)
    		return false
    	}
    	if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
    		// Something is deeply wrong. resolveMissingImports gave us a non-empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    					testCase.expectedError, err)
    			}
    
    		})
    	}
    }
    
    func TestRemoveStaleState(t *testing.T) {
    	machineInfo := returnMachineInfo()
    	testCases := []testMemoryManager{
    		{
    			description: "Should fail - policy returns an error",
    			policyName:  policyTypeMock,
    			machineInfo: machineInfo,
    			reserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 1 * gb,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    							skip = extract(tabs, line, re, s, ans, msg, codes[got].name, NiL, 0, 0, skip, level, test|TEST_DELIMIT);
    						else if (test & TEST_IGNORE_ERROR)
    							state.ignored++;
    						else
    						{
    							report("should fail and did", fun, re, NiL, -1, msg, flags, test);
    							printf("%s expected, %s returned: ", ans, codes[got].name);
    							state.errors--;
    							state.warnings++;
    							error(&preg, cret);
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    
    === Potential breaking changes
    
     * Build will now fail if a specified init script is not found.
     * `TaskContainer.remove()` now actually removes the given task — some plugins may have accidentally relied on the old behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         */
        private class ResolverResultsResolutionResultProvider implements ResolutionResultProvider<ResolverResults> {
    
            private final boolean strict;
    
            /**
             * @param strict Whether to fail if the configuration has not yet been resolved when the provider is queried.
             */
            public ResolverResultsResolutionResultProvider(boolean strict) {
                this.strict = strict;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	// simple function which returns a message which gives the context of the test
    	// and then followed by the actual error message.
    	failTestStr := func(testType, failMsg string) string {
    		return fmt.Sprintf("MinIO %s: %s fail for \"%s\": \n<Error> %s", instanceType, testType, testName, failMsg)
    	}
    
    	// httptest Recorder to capture all the response by the http handler.
    	rec := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top