Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for wieder (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            this.hidden = hidden;
        }
    
        public void notifyFired(RuleBinder binder) {
            assert binder.isBound() : "RuleBinder must be in a bound state";
            for (ModelBinding inputBinding : binder.getInputBindings()) {
                ModelNodeInternal node = inputBinding.getNode();
                if (dependencies == null) {
                    dependencies = new HashSet<>();
                }
                dependencies.add(node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. pkg/volume/util/attach_limit.go

    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    	// CinderVolumeLimitKey contains Volume limit key for Cinder
    	CinderVolumeLimitKey = "attachable-volumes-cinder"
    	// DefaultMaxCinderVolumes defines the maximum number of PD Volumes for Cinder
    	// For Openstack we are keeping this to a high enough value so as depending on backend
    	// cluster admins can configure it.
    	DefaultMaxCinderVolumes = 256
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/advanced-dependencies.md

    ## Eine „aufrufbare“ Instanz
    
    In Python gibt es eine Möglichkeit, eine Instanz einer Klasse „aufrufbar“ („callable“) zu machen.
    
    Nicht die Klasse selbst (die bereits aufrufbar ist), sondern eine Instanz dieser Klasse.
    
    Dazu deklarieren wir eine Methode `__call__`:
    
    === "Python 3.9+"
    
        ```Python hl_lines="12"
        {!> ../../../docs_src/dependencies/tutorial011_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:49 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/initialization/CompositeInitScriptFinder.java

            this.finders = Arrays.asList(finders);
        }
    
        @Override
        public void findScripts(Collection<File> scripts) {
            for (InitScriptFinder finder : finders) {
                finder.findScripts(scripts);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

                def binder = new RuleBinder(subjectReference, inputReferences, action, [])
                if (subjectReferenceBindingPath) {
                    binder.subjectBinding.boundTo = new TestNode(subjectReferenceBindingPath, Object)
                }
                boundInputReferencePaths.each { index, path ->
                    binder.inputBindings[index].boundTo = new TestNode(path, Object)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/RootProjectAccessorSourceGenerator.java

            writeLn();
            writeLn("    @Inject");
            writeLn("    public " + className + "(DefaultProjectDependencyFactory factory, ProjectFinder finder) {");
            writeLn("        super(factory, finder);");
            writeLn("    }");
            writeLn();
            writeProjectAccessor(toJavaName(rootProjectName(current)), current);
            processChildren(current);
    
            writeLn("}");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/Failure.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Represents a failure. Failures are similar to exceptions but carry less information (only a message, a description and a cause) so
     * they can be used in a wider scope than just the JVM where the exception failed.
     *
     * @since 2.4
     */
    public interface Failure {
    
        /**
         * Returns a short message (typically one line) for the failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/CompositeLocallyAvailableResourceFinder.java

            List<LocallyAvailableResourceCandidates> allCandidates = new LinkedList<LocallyAvailableResourceCandidates>();
            for (LocallyAvailableResourceFinder<C> finder : composites) {
                allCandidates.add(finder.findCandidates(criterion));
            }
    
            return new CompositeLocallyAvailableResourceCandidates(allCandidates);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/fake_binder.go

    */
    
    package volumebinding
    
    import (
    	"context"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    )
    
    // FakeVolumeBinderConfig holds configurations for fake volume binder.
    type FakeVolumeBinderConfig struct {
    	AllBound    bool
    	FindReasons ConflictReasons
    	FindErr     error
    	AssumeErr   error
    	BindErr     error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 03:28:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    				return true, gotBinding, nil
    			})
    
    			fh, err := frameworkruntime.NewFramework(ctx, nil, nil, frameworkruntime.WithClientSet(client))
    			if err != nil {
    				t.Fatal(err)
    			}
    			binder := &DefaultBinder{handle: fh}
    			status := binder.Bind(ctx, nil, testPod, testNode)
    			if got := status.AsError(); (tt.injectErr != nil) != (got != nil) {
    				t.Errorf("got error %q, want %q", got, tt.injectErr)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top