Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for isConfigured (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

            ToolchainFactory fact = factories.get(type);
            if (fact == null) {
                logger.error("Missing toolchain factory for type: " + type + ". Possibly caused by misconfigured project.");
            } else {
                List<ToolchainModel> availableToolchains =
                        org.apache.maven.toolchain.model.ToolchainModel.toolchainModelToApiV4(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/goline_order.txt

    go list
    cmp go.mod go.mod.orig
    
    # Adding the import produces the error.
    # Maybe this should auto-switch, but it requires more plumbing to get this error through,
    # and it's a misconfigured system that should not arise in practice, so not switching is fine.
    ! go list -deps -tags usem1
    cmp go.mod go.mod.orig
    stderr '^go: module ./m1 requires go >= 1.21.2 \(running go 1.21.1\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    // license that can be found in the LICENSE file.
    
    package analysis
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"unicode"
    )
    
    // Validate reports an error if any of the analyzers are misconfigured.
    // Checks include:
    // that the name is a valid identifier;
    // that the Doc is not empty;
    // that the Run is non-nil;
    // that the Requires graph is acyclic;
    // that analyzer fact types are unique;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivateTest.java

            ToolchainPrivate[] toolchains = toolchainManager.getToolchainsForType("unknown", session);
    
            // verify
            verify(logger).error("Missing toolchain factory for type: unknown. Possibly caused by misconfigured project.");
            assertEquals(0, toolchains.length);
        }
    
        @Test
        void testToolchainsForConfiguredType() throws Exception {
            // prepare
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java

            assertEquals(0, toolchains.size());
            verify(logger).error("Missing toolchain factory for type: unknown. Possibly caused by misconfigured project.");
        }
    
        @Test
        void testModelAndFactory() {
            MavenSession session = mock(MavenSession.class);
            MavenExecutionRequest executionRequest = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 16 12:54:16 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        envOpts,
    			DeclTypes:         declTypes,
    		})
    		if err != nil {
    			panic(fmt.Sprintf("environment misconfigured: %v", err))
    		}
    		return env
    	}
    
    	userType := buildUserType()
    	claimsType := apiservercel.NewMapType(apiservercel.StringType, apiservercel.AnyType, -1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    			},
    			DeclTypes: []*apiservercel.DeclType{
    				subjectAccessReviewSpecRequestType,
    			},
    		},
    	)
    	if err != nil {
    		panic(fmt.Sprintf("environment misconfigured: %v", err))
    	}
    
    	return extended
    }
    
    // buildRequestType generates a DeclType for SubjectAccessReviewSpec.
    // if attributes are added here, also add to convertObjectToUnstructured.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * Otherwise it is necessary to manually prepare a comprehensive set of trusted roots.
         *
         * If the host platform is compromised or misconfigured this may contain untrustworthy root
         * certificates. Applications that connect to a known set of servers may be able to mitigate
         * this problem with [certificate pinning][CertificatePinner].
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. docs/features/interceptors.md

    If you're in a tricky situation and prepared to deal with the consequences, rewriting response headers is a powerful way to work around problems. For example, you can fix a server's misconfigured `Cache-Control` response header to enable better response caching:
    
    ```java
    /** Dangerous interceptor that rewrites the server's cache-control header. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	return baseSet.Extend(opts...)
    }
    
    func mustNewEnvSet(ver *version.Version, opts []VersionedOptions) *EnvSet {
    	envSet, err := newEnvSet(ver, opts)
    	if err != nil {
    		panic(fmt.Sprintf("Default environment misconfigured: %v", err))
    	}
    	return envSet
    }
    
    // NewExpressionsEnv returns the NewExpressions environment Type for this EnvSet.
    // See NewExpressions for details.
    func (e *EnvSet) NewExpressionsEnv() *cel.Env {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top