Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 224 for run1 (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		inputObj:      &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "bar", Namespace: "test-ns", ResourceVersion: "1"}},
    		expectedError: storage.ErrResourceVersionSetOnCreate,
    	}}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			out := &example.Pod{} // reset
    			// verify that kv pair is empty before set
    			key := computePodKey(tt.inputObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    slf4jLogger.error(
                            "To see the full stack trace of the errors, re-run Maven with the '{}' switch",
                            MessageUtils.builder().strong("-e"));
                }
                if (!slf4jLogger.isDebugEnabled()) {
                    slf4jLogger.error(
                            "Re-run Maven using the '{}' switch to enable verbose output",
                            MessageUtils.builder().strong("-X"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *caseTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return caseValues[c0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute_test.go

    		out, _ := generateVirtualHostDomains(service, port, port, node)
    		assert.Equal(t, out, want)
    	}
    
    	for _, c := range cases {
    		c := c
    		t.Run(c.name, func(t *testing.T) {
    			test.SetForTest[bool](t, &features.EnableDualStack, c.enableDualStack)
    			testFn(t, c.service, c.port, c.node, c.want)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		},
    	}
    	for _, testCase := range cases {
    		t.Run(testCase.name, func(t *testing.T) {
    			// dynamic maxLength case
    			schema := testCase.schemaGenerator(nil)
    			t.Run("calc maxLength", schemaChecker(schema, testCase.expectedCalcCost, testCase.expectCalcCostExceedsLimit, t))
    			// static maxLength case
    			setSchema := testCase.schemaGenerator(&testCase.setMaxElements)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

    _2020-05-17_
    
     *  Fix: Don't crash when running as a plugin in Android Studio Canary 4.1. To enable
        platform-specific TLS features OkHttp must detect whether it's running in a JVM or in Android.
        The upcoming Android Studio runs in a JVM but has classes from Android and that confused OkHttp!
    
    
    ## Version 3.14.8
    
    _2020-04-28_
    
     *  Fix: Don't crash on Java 8u252 which introduces an API previously found only on Java 9 and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    //
    // As the names of these symbols are derived from the string of
    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    // contain run-time type information used by the runtime and reflect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

         */
        public ListenableFuture<?> run(final Runnable combiner, Executor executor) {
          return call(
              new Callable<@Nullable Void>() {
                @Override
                @CheckForNull
                public Void call() throws Exception {
                  combiner.run();
                  return null;
                }
              },
              executor);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Consequently, it cannot select a correct instantiation of ThreadWithParam
    // in order to call its Run(). Introducing ThreadWithParamBase as a
    // non-templated base class for ThreadWithParam allows us to bypass this
    // problem.
    class ThreadWithParamBase {
     public:
      virtual ~ThreadWithParamBase() {}
      virtual void Run() = 0;
    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    		},
    	}
    
    	for _, tt := range cases {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			t.Parallel()
    			for validRule, expectedCost := range tt.expectCost {
    				validRule := validRule
    				expectedCost := expectedCost
    				testName := validRule
    				if len(testName) > 127 {
    					testName = testName[:127]
    				}
    				t.Run(testName, func(t *testing.T) {
    					t.Parallel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top