Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for nfail (0.22 sec)

  1. src/bufio/bufio_test.go

    	br.ReadRune()
    	br.Peek(1)
    	if err := br.UnreadRune(); err == nil {
    		t.Error("UnreadRune didn't fail after Peek")
    	}
    }
    
    func TestNoUnreadByteAfterPeek(t *testing.T) {
    	br := NewReader(strings.NewReader("example"))
    	br.ReadByte()
    	br.Peek(1)
    	if err := br.UnreadByte(); err == nil {
    		t.Error("UnreadByte didn't fail after Peek")
    	}
    }
    
    func TestNoUnreadRuneAfterDiscard(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				ClusterMatched: "inbound|70||",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    			Strict: simulation.Result{
    				// Plaintext to strict, should fail
    				Error: simulation.ErrNoFilterChain,
    			},
    		},
    		{
    			Name: "http to tcp",
    			Call: simulation.Call{
    				Port:     70,
    				Protocol: simulation.HTTP,
    				CallMode: simulation.CallModeInbound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	sleepController piController
    
    	// controllerCooldown is the time left in nanoseconds during which we avoid
    	// using the controller and we hold sleepRatio at a conservative
    	// value. Used if the controller's assumptions fail to hold.
    	controllerCooldown int64
    
    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    		t.Error("rune count wrong in lower:", n)
    	}
    	if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
    		t.Error("ToUpper(upper) consistency fail")
    	}
    	if !equal("ToLower(lower)", ToLower(lower), lower, t) {
    		t.Error("ToLower(lower) consistency fail")
    	}
    	/*
    		  These fail because of non-one-to-oneness of the data, such as multiple
    		  upper case 'I' mapping to 'i'.  We comment them out but keep them for
    		  interest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            terse << [true, false]
        }
    
        def "can ignore a key for a specific artifact and fallback to checksum verification (terse output=#terse)"() {
            // we tamper the jar, so the verification of the jar would fail, but not the POM
            keyServerFixture.withDefaultSigningKey()
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    		case core.UpdateAction:
    			assert.Equal(t, pod.Name, action.GetObject().(*v1.Pod).Name, "Unexpected UpdateAction: %+v", action)
    		default:
    			assert.Fail(t, "Unexpected Action: %+v", action)
    		}
    		return true, ret, err
    	})
    
    	pod.Status.ContainerStatuses = []v1.ContainerStatus{{State: v1.ContainerState{Running: &v1.ContainerStateRunning{}}}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * this client silently recovers from the following problems:
         *
         * * **Unreachable IP addresses.** If the URL's host has multiple IP addresses,
         *   failure to reach any individual IP address doesn't fail the overall request. This can
         *   increase availability of multi-homed services.
         *
         * * **Stale pooled connections.** The [ConnectionPool] reuses sockets
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		SetElementOrder: true,
    	}
    	patchMap, err := diffMaps(original, modified, schema, diffOptions)
    	if err != nil {
    		return nil, err
    	}
    
    	// Apply the preconditions to the patch, and return an error if any of them fail.
    	for _, fn := range fns {
    		if !fn(patchMap) {
    			return nil, mergepatch.NewErrPreconditionFailed(patchMap)
    		}
    	}
    
    	return patchMap, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

        /**
         * Associates {@code key} with {@code value} in the built map. Duplicate keys, according to the
         * comparator (which might be the keys' natural order), are not allowed, and will cause {@link
         * #build} to fail.
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(K key, V value) {
          super.put(key, value);
          return this;
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle introduced additional task and artifact transform validation warnings in the Gradle 7.x series.
    Those warnings are now errors in Gradle 8.0 and will fail the build.
    
    Warnings that became errors:
    
    - An input file collection that can't be resolved.
    - An input or output file or directory that cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top