Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 446 for Result (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                            valueOrTransform.apply(
                                value -> results.add(value),
                                transform -> {
                                    final int index = results.size();
                                    results.add(null);
                                    transforms.add(() -> {
                                        results.set(index, unchecked(transform));
                                        return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    func (c *customResourceDefinitions) Get(ctx context.Context, name string, options v1.GetOptions) (result *v1beta1.CustomResourceDefinition, err error) {
    	result = &v1beta1.CustomResourceDefinition{}
    	err = c.client.Get().
    		Resource("customresourcedefinitions").
    		Name(name).
    		VersionedParams(&options, scheme.ParameterCodec).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    		result.ParityBlocks = er.defaultParityCount
    	}
    	result.DataBlocks = len(storageDisks) - result.ParityBlocks
    
    	for index, disk := range storageDisks {
    		if disk == nil {
    			result.Before.Drives = append(result.Before.Drives, madmin.HealDriveInfo{
    				UUID:     "",
    				Endpoint: storageEndpoints[index].String(),
    				State:    madmin.DriveStateOffline,
    			})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	return f.result
    }
    
    // Add sends an add event.
    func (f *FakeWatcher) Add(obj runtime.Object) {
    	f.result <- Event{Added, obj}
    }
    
    // Modify sends a modify event.
    func (f *FakeWatcher) Modify(obj runtime.Object) {
    	f.result <- Event{Modified, obj}
    }
    
    // Delete sends a delete event.
    func (f *FakeWatcher) Delete(lastValue runtime.Object) {
    	f.result <- Event{Deleted, lastValue}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  5. pilot/pkg/simulation/traffic.go

    }
    
    func (sim *Simulation) Run(input Call) (result Result) {
    	result = Result{t: sim.t}
    	input = input.FillDefaults()
    	if input.Alpn != "" && input.TLS == Plaintext {
    		result.Error = fmt.Errorf("invalid call, ALPN can only be sent in TLS requests")
    		return result
    	}
    
    	// First we will match a listener
    	l := matchListener(sim.Listeners, input)
    	if l == nil {
    		result.Error = ErrNoListener
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            configurationCacheRun(":transformer")
    
            then:
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "24"
    
            when:
            input.text = "4"
            configurationCacheRun(":transformer")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "16"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

            when:
            configurationCacheRun "clean"
            configurationCacheRun "build"
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTaskExecuted(":compileGroovy")
            result.assertTaskSkipped(":compileGroovy")
        }
    
        def "assemble on Groovy project with sources but no groovy dependency is executed and fails with a reasonable error message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. cmd/object_api_suite_test.go

    		}
    		if result.Objects[1].Name != "newPrefix2" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[1].Name)
    		}
    		if result.Objects[2].Name != "obj0" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[2].Name)
    		}
    		if result.Objects[3].Name != "obj1" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (AtomicLoad32 ptr mem)
    	// result: (LoweredAtomicLoad32 [1] ptr mem)
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64LoweredAtomicLoad32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicLoad64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad64 ptr mem)
    	// result: (LoweredAtomicLoad64 [1] ptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Artifact relocatedArtifact = getRelocation(session, result, model);
                if (relocatedArtifact != null) {
                    if (withinSameGav(relocatedArtifact, a)) {
                        result.setArtifact(relocatedArtifact);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top