Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,828 for okdown (0.11 sec)

  1. cmd/kubeadm/app/componentconfigs/configset_test.go

    	nodeRegOps := &kubeadmapi.NodeRegistrationOptions{}
    
    	Default(clusterCfg, localAPIEndpoint, nodeRegOps)
    
    	if len(clusterCfg.ComponentConfigs) != len(known) {
    		t.Errorf("mismatch between supported and defaulted type numbers:\n\tgot: %d\n\texpected: %d", len(clusterCfg.ComponentConfigs), len(known))
    	}
    }
    
    func TestFromCluster(t *testing.T) {
    	objects := []runtime.Object{
    		testKubeProxyConfigMap(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 01 14:17:07 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectPublicationRegistry.java

        void registerPublication(ProjectInternal project, ProjectPublication publication);
    
        /**
         * Returns the known publications for the given project.
         */
        <T extends ProjectPublication> Collection<T> getPublications(Class<T> type, Path projectIdentityPath);
    
        /**
         * Returns all known publications.
         */
        <T extends ProjectPublication> Collection<Reference<T>> getPublications(Class<T> type);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/helpers_test.go

    // limitations under the License.
    package local
    
    // Test helpers common to this package
    
    import (
    	"reflect"
    	"testing"
    
    	"google.golang.org/protobuf/types/known/emptypb"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/pkg/config/analysis/legacy/source/kube"
    	"istio.io/istio/pkg/config/resource"
    	r2 "istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultJvmVendorSpecTest.groovy

        def "unknown does not match known vendor"() {
            given:
            def metadata = Mock(JvmInstallationMetadata) {
                getVendor() >> JvmVendor.fromString("some unknown")
            }
    
            when:
            def asPredicate = (Predicate<JvmInstallationMetadata>)JvmVendorSpec.ADOPTOPENJDK
    
            then:
            !asPredicate.test(metadata)
        }
    
        def "matches known vendors"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/monitoring/monitoring.go

    	Type        string
    	Description string
    	Bounds      []float64
    }
    
    // metrics stores known metrics
    type metrics struct {
    	started bool
    	mu      sync.Mutex
    	known   map[string]MetricDefinition
    }
    
    // knownMetrics is a global that stores all registered metrics
    var knownMetrics = metrics{
    	known: map[string]MetricDefinition{},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. pkg/controller/deployment/rolling.go

    			// cannot scale down this ReplicaSet.
    			continue
    		}
    		// Scale down.
    		scaleDownCount := min(*(targetRS.Spec.Replicas), totalScaleDownCount-totalScaledDown)
    		newReplicasCount := *(targetRS.Spec.Replicas) - scaleDownCount
    		if newReplicasCount > *(targetRS.Spec.Replicas) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

                                                TypeRangeWithDesc range1);
    
    // Fold Arithmetic Op if one of the operands is a constant known to be an
    // Identity (e.g. X+0, X*1, etc...). For commutative operations fold if
    // known identity value is either lhs or rhs.
    template <
        typename OpT,
        typename std::enable_if<llvm::is_one_of<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client.go

    				// filter passthrough the entire namespace object, so we can pass the last known state to OnDelete.
    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. docs/sts/keycloak.md

        - `User Attribute` is `policy`
        - `Token Claim Name` is `policy`
        - `Claim JSON Type` is `string`
      - Save
    
    - Open <http://localhost:8080/auth/realms/{your-realm-name}/.well-known/openid-configuration> to verify OpenID discovery document, verify it has `authorization_endpoint` and `jwks_uri`
    
    ### Enable Keycloak Admin REST API support
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/DefaultPolymorphicNamedEntityInstantiator.java

            if (factory == null) {
                throw new InvalidUserDataException(
                        String.format("Cannot create a %s because this type is not known to %s. Known types are: %s", type.getSimpleName(), displayName, getSupportedTypeNames()),
                        new NoFactoryRegisteredForTypeException());
            }
            return factory.create(name);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top