Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for redeclared (0.47 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    func TestReverseProxyStripHeadersPresentInConnection(t *testing.T) {
    	const fakeConnectionToken = "X-Fake-Connection-Token"
    	const backendResponse = "I am the backend"
    
    	// someConnHeader is some arbitrary header to be declared as a hop-by-hop header
    	// in the Request's Connection header.
    	const someConnHeader = "X-Some-Conn-Header"
    
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    You can, however, omit the type if you only need to configure properties or to call methods that are common to all tasks, i.e. they are declared on the `Task` interface.
    
    One can discover what tasks are available by running `gradle tasks`. You can then find out the type of a given task by running `gradle help --task <taskName>`, as demonstrated here:
    
    [source,text]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // Constraint: only consider explicit exclusions declared for this constraint
            ExcludeSpec constraintExclusions = dependencyEdge.getEdgeExclusions();
            if (constraintExclusions != nothing && constraintExclusions != nodeExclusions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    	// Find the generic methods stored on N.
    	gm, gn := N.Method(0), N.Method(1)
    	if gm.Name() == "n" {
    		gm, gn = gn, gm
    	}
    
    	// Collect objects from info.
    	var dm, dn *Func   // the declared methods
    	var dmm, dmn *Func // the methods used in the body of m
    	for _, decl := range f.DeclList {
    		fdecl, ok := decl.(*syntax.FuncDecl)
    		if !ok {
    			continue
    		}
    		def := info.Defs[fdecl.Name].(*Func)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	// Find the generic methods stored on N.
    	gm, gn := N.Method(0), N.Method(1)
    	if gm.Name() == "n" {
    		gm, gn = gn, gm
    	}
    
    	// Collect objects from info.
    	var dm, dn *Func   // the declared methods
    	var dmm, dmn *Func // the methods used in the body of m
    	for _, decl := range f.Decls {
    		fdecl, ok := decl.(*ast.FuncDecl)
    		if !ok {
    			continue
    		}
    		def := info.Defs[fdecl.Name].(*Func)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        /**
         * Whenever a dependency on a project is found and that the client configuration
         * defines attributes, we try to find a target configuration with the same attributes
         * declared. However if 2 configurations on the target project declares the same attributes,
         * we don't know which one to choose.
         *
         * This test implements a first option, which is to make this an error case.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    		// Do not return blackhole cluster for service==nil case as there is a legitimate use case for
    		// calling this function with nil service: to route to a pre-defined statically configured cluster
    		// declared as part of the bootstrap.
    		// If blackhole cluster is needed, do the check on the caller side. See gateway and tls.go for examples.
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            maybeWarnOnChangingUsage("setCanBeDeclared", canBeDeclaredAgainst, allowed);
            setCanBeDeclaredInternal(allowed);
        }
    
        /**
         * Configures if a configuration can have dependencies declared against it, without emitting any warnings.
         */
        private void setCanBeDeclaredInternal(boolean allowed) {
            if (canBeDeclaredAgainst != allowed) {
                validateMutation(MutationType.USAGE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

                  return axes.get(index).asList();
                }
    
                @Override
                boolean isPartialView() {
                  return true;
                }
    
                // redeclare to help optimizers with b/310253115
                @SuppressWarnings("RedundantOverride")
                @Override
                @J2ktIncompatible // serialization
                @GwtIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
      // ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.
      //
      // validationActions is declared as a set of action values. Order does
      // not matter. validationActions may not contain duplicates of the same action.
      //
      // The supported actions values are:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top