Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 417 for Result (0.17 sec)

  1. cni/pkg/plugin/plugin.go

    		}
    	}
    }
    
    func pluginResponse(conf *Config) error {
    	var result *cniv1.Result
    	if conf.PrevResult == nil {
    		result = &cniv1.Result{
    			CNIVersion: cniv1.ImplementedSpecVersion,
    		}
    		return types.PrintResult(result, conf.CNIVersion)
    	}
    
    	// Pass through the result for the next plugin
    	return types.PrintResult(conf.PrevResult, conf.CNIVersion)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildIntegTestConfigurationCacheSmokeTest.groovy

            when:
            configurationCacheRun supportedTasks, 0
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
            run([":configuration-cache:clean"])
    
            then:
            configurationCacheRun supportedTasks, 1
    
            then:
            result.assertConfigurationCacheStateLoaded()
            result.task(":configuration-cache:embeddedIntegTest").outcome == TaskOutcome.FROM_CACHE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
         * Gets the result of the dependency resolution for the project.
         *
         * @return the result of the dependency resolution for the project
         */
        @Nonnull
        Optional<DependencyResolverResult> getDependencyResolverResult();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    			var res *workloadapi.Workload
    			if wrapper != nil {
    				res = wrapper.Workload
    			}
    			assert.Equal(t, res, tt.result)
    		})
    	}
    }
    
    func TestWorkloadEntryWorkloads(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    		we     *networkingclient.WorkloadEntry
    		result *workloadapi.Workload
    	}{
    		{
    			name: "we with service",
    			inputs: []any{
    				model.ServiceInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    				result = append(result, MatchValue{IndexName: FieldIndex(field), Value: namespace})
    			}
    		}
    	}
    	for _, label := range s.IndexLabels {
    		if value, ok := s.Label.RequiresExactMatch(label); ok {
    			result = append(result, MatchValue{IndexName: LabelIndex(label), Value: value})
    		}
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

            then:
            configurationCache.assertStateLoaded()
            result.assertTaskSkipped(":$spec.copyTask")
    
            when:
            spec.mutateExcludedFiles()
    
            and:
            configurationCacheRun spec.copyTask
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksSkipped(":$spec.copyTask")
    
            where:
            spec << DefaultExcludesFixture.specs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file('files/b/ignore.txt').createFile()
            run 'copy'
    
            then:
            result.assertTaskSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt'
            )
    
            when:
            file('files/a/three.txt').createFile()
            run 'copy'
    
            then:
            result.assertTaskNotSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedExternalArtifactSetCodec.kt

                write(value.result)
            }
        }
    
        override suspend fun ReadContext.decode(): TransformedExternalArtifactSet {
            return decodePreservingSharedIdentity {
                val result = readNonNull<CalculatedValueContainer<ImmutableList<ResolvedArtifactSet.Artifacts>, AbstractTransformedArtifactSet.CalculateArtifacts>>()
                TransformedExternalArtifactSet(result)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/settings.go

    func (s *Settings) String() string {
    	result := ""
    
    	result += fmt.Sprintf("Kubeconfigs:           %s\n", s.KubeConfig)
    	result += fmt.Sprintf("LoadBalancerSupported: %v\n", s.LoadBalancerSupported)
    	result += fmt.Sprintf("MCSControllerEnabled:  %v\n", s.MCSControllerEnabled)
    	result += fmt.Sprintf("ControlPlaneTopology:  %v\n", s.controlPlaneTopology)
    	result += fmt.Sprintf("NetworkTopology:       %v\n", s.networkTopology)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            if (exception instanceof ProjectBuildingException) {
                List<ProjectBuildingResult> results = ((ProjectBuildingException) exception).getResults();
    
                children = new ArrayList<>();
    
                for (ProjectBuildingResult result : results) {
                    ExceptionSummary child = handle(result);
                    if (child != null) {
                        children.add(child);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top