Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 210 for gotype (0.15 sec)

  1. src/cmd/compile/internal/types2/typexpr.go

    	}
    
    	x.typ = typ
    }
    
    // typ type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type.
    func (check *Checker) typ(e syntax.Expr) Type {
    	return check.definedType(e, nil)
    }
    
    // varType type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type and it must not be a
    // constraint interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeClassSourceGenerator.java

                    return CodeBlock.of("return $N.$N().getOrElse($L)", SELF_PARAMETER_NAME, propertyGetterName, TypeUtils.getDefaultValue(returnType.getType()));
                default:
                    throw new UnsupportedOperationException("Generating get call for type: " + upgradedPropertyType.asType() + " is not supported");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:11:23 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/sym.go

    //
    // NOTE: In practice, things can be messier than the description above
    // for various reasons (historical, convenience).
    type Sym struct {
    	Linkname string // link name
    
    	Pkg  *Pkg
    	Name string // object name
    
    	// The unique ONAME, OTYPE, OPACK, or OLITERAL node that this symbol is
    	// bound to within the current scope. (Most parts of the compiler should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyStringNotationConverterTest.groovy

            !d.force
            !d.transitive
            !d.changing
    
            d.artifacts.size() == 1
            d.artifacts.find { it.name == 'gradle-core' && it.classifier == null && it.type == 'mytype' }
        }
    
        def "with classified artifact"() {
            when:
            def d = parse(parser, 'org.gradle:gradle-core:10:jdk-1.4@zip')
    
            then:
            d.name == 'gradle-core'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    	// Pre-build our metric types to avoid recompute them on each event
    	adds := k8sEvents.With(typeTag.Value(otype), eventTag.Value("add"))
    	updatesames := k8sEvents.With(typeTag.Value(otype), eventTag.Value("updatesame"))
    	updates := k8sEvents.With(typeTag.Value(otype), eventTag.Value("update"))
    	deletes := k8sEvents.With(typeTag.Value(otype), eventTag.Value("delete"))
    
    	informer.AddEventHandler(
    		controllers.EventHandler[T]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

            NotationParser<Object, ComponentSelector> projectSelectorNotationParser = NotationParserBuilder
                .toType(ComponentSelector.class)
                .fromCharSequence(new ProjectPathConverter(componentIdentifierFactory))
                .toComposite();
            return instantiator.newInstance(DefaultDependencySubstitutions.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    	}
    
    	x.typ = typ
    }
    
    // typ type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type.
    func (check *Checker) typ(e ast.Expr) Type {
    	return check.definedType(e, nil)
    }
    
    // varType type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type and it must not be a
    // constraint interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

        private static final Pattern ENCODED_URI = Pattern.compile("%([0-9a-fA-F]{2})");
    
        public static NotationParser<Object, Object> parser() {
            return NotationParserBuilder
                .toType(Object.class)
                .typeDisplayName("a File or URI")
                .noImplicitConverters()
                .converter(new FileOrUriNotationConverter())
                .toComposite();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                } else if (dependency.getVersionConstraint().getRequiredVersion().isEmpty()) {
                    throw new InvalidUserDataException("Cannot convert a version catalog entry: '" + notation.get() + "' to an object of type ModuleVersionSelector. Version cannot be empty for '" + caller + "'.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
        kFatalFailure      // Failed and the test should be terminated.
      };
    
      // C'tor.  TestPartResult does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestPartResult object.
      TestPartResult(Type a_type,
                     const char* a_file_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top