Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for getNodes (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/CustomModelStreamingBuildAction.java

            this.type = type;
            this.value = value;
        }
    
        @Override
        public T execute(BuildController controller) {
            controller.send(new CustomModel(value));
            return controller.getModel(type);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r74/CompositeBuildSubstitutionsCrossVersionSpec.groovy

        }
    
        def "Eclipse model respects composite build substitutions in root build"() {
            given:
            compositeIncludedRoot()
    
            when:
            def model = withConnection {
                getModel(HierarchicalEclipseProject)
            }
    
            then:
            model.children[1].projectDependencies.size() == 1
            model.children[1].projectDependencies[0].path == 'sub-a'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/wasm/convert.go

    	}
    
    	// At this point, we should have wasmNetworkFilterConfig or wasmHTTPFilterConfig should be unmarshalled.
    	if wasmNetwork {
    		if wasmNetworkFilterConfig.Config.GetVmConfig().GetCode().GetRemote() == nil {
    			if wasmNetworkFilterConfig.Config.GetVmConfig().GetCode().GetLocal() == nil {
    				return nil, nil, nil, fmt.Errorf("no remote and local load found in Wasm Network filter %+v", wasmNetworkFilterConfig)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    	if kubeClient == nil {
    		return nil
    	}
    
    	logger := klog.FromContext(ctx)
    	logger = klog.LoggerWithName(logger, "node resources controller")
    	ctx = klog.NewContext(ctx, logger)
    
    	c := &nodeResourcesController{
    		ctx:        ctx,
    		kubeClient: kubeClient,
    		getNode:    getNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedStat.java

        public NativePlatformBackedStat(PosixFiles posixFiles) {
            this.posixFiles = posixFiles;
        }
    
        @Override
        public int getUnixMode(File f) {
            return posixFiles.getMode(f, true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

                    ${javaSourceCompatibility(targetVersion, JavaVersion.VERSION_1_5)}
                }
    
            """
    
            when:
            def ideaProject = withConnection { connection -> connection.getModel(IdeaProject) }
    
            then:
            ideaProject.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_7
            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/quota_linux_test.go

    		err = fakeAssignQuota(testcase.path, testcase.poduid, testcase.bytes)
    	case "Clear":
    		err = fakeClearQuota(testcase.path)
    	case "GetConsumption":
    		_, err = GetConsumption(testcase.path)
    	case "GetInodes":
    		_, err = GetInodes(testcase.path)
    	default:
    		t.Errorf("Case %v (%s, %s, %v) unknown operation %s", seq, testcase.name, testcase.path, true, testcase.op)
    		return true
    	}
    	if err != nil && testcase.expectsSetQuota {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiIdeaModelCrossVersionSpec.groovy

            rootProject.name = "root"
            include 'api', 'impl', 'contrib:api', 'contrib:impl'"""
    
            when:
    
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
    
            then:
            def allNames = project.modules*.name
            allNames.unique().size() == 6
    
            IdeaModule impl = project.modules.find { it.name == 'root-impl' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

        }
    
        @Override
        public FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName, @Nullable Consumer<FileLockReleasedSignal> whenContended) {
            if (options.getMode() == LockMode.OnDemand) {
                throw new UnsupportedOperationException(String.format("No %s mode lock implementation available.", options));
            }
            File canonicalTarget;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellableActionRunner.java

                }
            } catch (InternalBuildActionFailureException e) {
                throw new BuildActionFailureException("The supplied build action failed with an exception.", e.getCause());
            }
            return result.getModel();
        }
    
        @SuppressWarnings("deprecation")
        protected <T> BuildResult<T> execute(InternalBuildActionAdapter<T> buildActionAdapter, InternalCancellationToken cancellationTokenAdapter, BuildParameters operationParameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top