Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for CUSTOM (0.13 sec)

  1. pkg/controller/disruption/disruption_test.go

    	scaleClient     *scalefake.FakeScaleClient
    	discoveryClient *discoveryfake.FakeDiscovery
    	informerFactory informers.SharedInformerFactory
    }
    
    var customGVK = schema.GroupVersionKind{
    	Group:   "custom.k8s.io",
    	Version: "v1",
    	Kind:    "customresource",
    }
    
    func newFakeDisruptionController(ctx context.Context) (*disruptionController, *pdbStates) {
    	return newFakeDisruptionControllerWithTime(ctx, time.Now())
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

          return this;
        }
    
        @Override
        public CharMatcher negate() {
          return new NegatedFastMatcher(this);
        }
      }
    
      /** {@link FastMatcher} which overrides {@code toString()} with a custom name. */
      abstract static class NamedFastMatcher extends FastMatcher {
    
        private final String description;
    
        NamedFastMatcher(String description) {
          this.description = checkNotNull(description);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				Kind:    reqScope.Kind.Kind,
    			})
    			route.Metadata(RouteMetaAction, strings.ToLower(action.Verb))
    			ws.Route(route)
    		}
    		// Note: update GetAuthorizerAttributes() when adding a custom handler.
    	}
    
    	apiResource.Verbs = make([]string, 0, len(kubeVerbs))
    	for kubeVerb := range kubeVerbs {
    		apiResource.Verbs = append(apiResource.Verbs, kubeVerb)
    	}
    	sort.Strings(apiResource.Verbs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            cliRequest.topDirectory = topDirectory;
            // We're very early in the process, and we don't have the container set up yet,
            // so we rely on the JDK services to eventually look up a custom RootLocator.
            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
            // properties will be computed through the RootLocator found in the container.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.yamaha.openscoreformat",
    				"application/vnd.yamaha.openscoreformat.osfpvg+xml",
    				"application/vnd.yamaha.smaf-audio",
    				"application/vnd.yamaha.smaf-phrase",
    				"application/vnd.yellowriver-custom-menu",
    				"application/vnd.zul",
    				"application/vnd.zzazz.deck+xml",
    				"application/voicexml+xml",
    				"application/watcherinfo+xml",
    				"application/whoispp-query",
    				"application/whoispp-response",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

          return this;
        }
    
        @Override
        public CharMatcher negate() {
          return new NegatedFastMatcher(this);
        }
      }
    
      /** {@link FastMatcher} which overrides {@code toString()} with a custom name. */
      abstract static class NamedFastMatcher extends FastMatcher {
    
        private final String description;
    
        NamedFastMatcher(String description) {
          this.description = checkNotNull(description);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/replica_calculator_test.go

    		if !wasGetFor {
    			return true, nil, fmt.Errorf("expected a get-for action, got %v instead", action)
    		}
    
    		if tc.metric == nil {
    			return true, nil, fmt.Errorf("no custom metrics specified in test client")
    		}
    
    		assert.Equal(t, tc.metric.name, getForAction.GetMetricName(), "the metric requested should have matched the one specified")
    
    		if getForAction.GetName() == "*" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### Plus a modern API
     *
     * The URL (JDK1.0) and URI (Java 1.4) classes predate builders and instead use telescoping
     * constructors. For example, there's no API to compose a URI with a custom port without also
     * providing a query and fragment.
     *
     * Instances of [HttpUrl] are well-formed and always have a scheme, host, and path. With
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		if len(matches) == 0 {
    			continue
    		}
    		count, err := strconv.Atoi(matches[1])
    		if err != nil {
    			// unlikely kubelet created this file,
    			// likely custom file with random numbers as a name
    			continue
    		}
    		count++
    		if count > restartCount {
    			restartCount = count
    		}
    	}
    	return restartCount, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	command []string
    	// expectedPeerCerts contains a list of PEM blocks of expected
    	// certificates from the client.
    	expectedPeerCerts []string
    	// config, if not nil, contains a custom Config to use for this test.
    	config *Config
    	// expectHandshakeErrorIncluding, when not empty, contains a string
    	// that must be a substring of the error resulting from the handshake.
    	expectHandshakeErrorIncluding string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top