Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for redeclared (0.18 sec)

  1. 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)
  2. 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)
  3. hack/tools/go.sum

    github.com/nishanths/exhaustive v0.12.0/go.mod h1:mEZ95wPIZW+x8kC4TgC+9YCUgiST7ecevsVDTgc2obs=
    github.com/nishanths/predeclared v0.2.2 h1:V2EPdZPliZymNAn79T8RkNApBjMmVKh5XRpLm/w98Vk=
    github.com/nishanths/predeclared v0.2.2/go.mod h1:RROzoN6TnGQupbC+lqggsOlcgysk3LMK/HI84Mp280c=
    github.com/nunnatsa/ginkgolinter v0.15.2 h1:N2ORxUxPU56R9gsfLIlVVvCv/V/VVou5qVI1oBKBNHg=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                /*
                 *  GROOVY-4009: when a normal variable is simply being used, there is no need to try to
                 *  resolve its type. Variable type resolve should proceed only if the variable is being declared.
                 */
                return ve;
            }
            if (v instanceof DynamicVariable) {
                String name = ve.getName();
                ClassNode t = ClassHelper.make(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    But it is an invalid configure closure for a Configuration.
    This example creates the `conf` Configuration immediately.
    During `resolve` task execution, the `distributions` block executed as if it were declared at the script-level:
    
    ```groovy
    configurations {
        conf.incoming.afterResolve {
            distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/apis/admissionregistration/types.go

    	// 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 Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. 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)
Back to top