Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 187 for instantiation (0.44 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

    import org.gradle.internal.extensibility.ExtensibleDynamicObject;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.logging.StandardOutputCapture;
    import org.gradle.internal.logging.slf4j.ContextAwareTaskLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. src/go/types/decl.go

    	// This avoids a nuisance in the best case (non-parameterized receiver type) and
    	// since the method is not a type, we get an error. If we have a parameterized
    	// receiver type, instantiating the receiver type leads to the instantiation of
    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    // repopulated and the volume ReportedInUse is initialized to false, while the
    // VolumesInUse list from the Node object still contains the state from the
    // previous kubelet instantiation.
    //
    // Once the volumes are added to the dsw, the ReportedInUse field needs to be
    // synced from the VolumesInUse list in the Node.Status.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	// This avoids a nuisance in the best case (non-parameterized receiver type) and
    	// since the method is not a type, we get an error. If we have a parameterized
    	// receiver type, instantiating the receiver type leads to the instantiation of
    	// its methods, and we don't want a cycle error in that case.
    	// TODO(gri) review if this is correct and/or whether we still need this?
    	saved := obj.color_
    	obj.color_ = black
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal.go

    		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
    	}
    	if start.Name.Local == "" {
    		name := typ.Name()
    		if i := strings.IndexByte(name, '['); i >= 0 {
    			// Truncate generic instantiation name. See issue 48318.
    			name = name[:i]
    		}
    		if name == "" {
    			return &UnsupportedTypeError{typ}
    		}
    		start.Name.Local = name
    	}
    
    	// Attributes
    	for i := range tinfo.fields {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    # pragma warning(pop)           // Restores the warning state.
    #elif defined(__BORLANDC__)
      // C++Builder cannot use member overload resolution during template
      // instantiation.  The simplest workaround is to use its C++0x type traits
      // functions (C++Builder 2009 and above only).
      static const bool value = __is_convertible(From, To);
    #else
      static const bool value =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    # pragma warning(pop)           // Restores the warning state.
    #elif defined(__BORLANDC__)
      // C++Builder cannot use member overload resolution during template
      // instantiation.  The simplest workaround is to use its C++0x type traits
      // functions (C++Builder 2009 and above only).
      static const bool value = __is_convertible(From, To);
    #else
      static const bool value =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	tests := []struct {
    		src string
    		ok  bool
    	}{
    		// use (instantiation) of public API is ok
    		{"ok.go", true},
    		// push linkname is ok
    		{"push.go", true},
    		// pull linkname of blocked symbol is not ok
    		{"coro.go", false},
    		{"coro_var.go", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

        private final Instantiator instantiator;
        private IdeaModel ideaModel;
        private List<Project> allJavaProjects;
        private final UniqueProjectNameProvider uniqueProjectNameProvider;
        private final IdeArtifactRegistry artifactRegistry;
        private final ProjectStateRegistry projectPathRegistry;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationFactory.java

     */
    @ThreadSafe
    public class DefaultConfigurationFactory {
    
        private final Instantiator instantiator;
        private final ConfigurationResolver resolver;
        private final ListenerManager listenerManager;
        private final DependencyMetaDataProvider metaDataProvider;
        private final ComponentIdentifierFactory componentIdentifierFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top