Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for proper (0.23 sec)

  1. cmd/iam-etcd-store.go

    	// a large number of users
    	r, err := ies.client.Get(cctx, basePrefix, etcd.WithPrefix())
    	if err != nil {
    		return err
    	}
    
    	// Parse all users values to create the proper data model
    	for _, userKv := range r.Kvs {
    		if err = ies.getUserKV(ctx, userKv, userType, m, basePrefix); err != nil && err != errNoSuchUser {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/resolution/DefaultDocumentResolutionContainer.kt

                            function as SchemaMemberFunction,
                            false // TODO: produce proper key markers
                        )
                    }
    
                    else -> error("unexpected semantics of element function")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file:///somepath")));
            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file://D:/somepath")));
    
            // not a proper url so returns false;
            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "192.168.101.1")));
            assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "")));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tests/integration/helm/util.go

    	if err != nil {
    		ctx.Fatalf("failed to apply templated revision tags yaml: %v", err)
    	}
    
    	scopes.Framework.Infof("=== succeeded === ")
    }
    
    // VerifyMutatingWebhookConfigurations verifies that the proper number of mutating webhooks are running, used with
    // revisions and revision tags
    func VerifyMutatingWebhookConfigurations(ctx framework.TestContext, cs cluster.Cluster, names []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        is determined by TPU program compilation, so this pass does not include how
        to reformat the variables, but only inserts general TPUReshardVariablesOps in
        proper places, and TPUReshardVariablesOps interpret the compilation.
    
        The core idea of this optimization is to keep track of the formatting state
        of variables, and when the next desired state does not change, it can avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                if (containingFile == null || containingFile.declarations.firstOrNull() !is FirScript) {
                    // Should be replaced with proper check after KT-61451 and KT-61887
                    return false
                }
            }
    
            val firSymbol = symbol.firSymbol
            if (firSymbol is FirPropertySymbol && firSymbol.isForeignValue) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// NetworkProgrammingLatency is defined as the time it took to program the network - from the time
    	// the service or pod has changed to the time the change was propagated and the proper kube-proxy
    	// rules were synced. Exported for each endpoints object that were part of the rules sync.
    	// See https://github.com/kubernetes/community/blob/master/sig-scalability/slos/network_programming_latency.md
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

        private ModelVersionParser newModelVersionParser() {
            // This is a limited parser that does not support ranges and compares versions as strings
            // in real-life this parser should not be used, but replaced with a proper one
            return new ModelVersionParser() {
                @Override
                public Version parseVersion(String version) {
                    requireNonNull(version, "version");
                    return new Version() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

           * ClassNotFoundException thereafter.
           *
           * Android API level 26 and JVM8 both let our Error propagate directly the first time and
           * throw NoClassDefFoundError thereafter. This is the proper behavior according to the spec.
           * See https://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.4.2 (steps #11 and
           * #5).
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin.go

    		}
    	}
    	return loggingOptions
    }
    
    // CmdAdd is called for ADD requests
    func CmdAdd(args *skel.CmdArgs) (err error) {
    	// Defer a panic recover, so that in case if panic we can still return
    	// a proper error to the runtime.
    	defer func() {
    		if e := recover(); e != nil {
    			msg := fmt.Sprintf("istio-cni panicked during cmdAdd: %v\n%v", e, string(debug.Stack()))
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top