Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Tresults (0.55 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            public ExecutionResult waitForFinish() {
                ExecutionResult result = delegate.waitForFinish();
                results.add(result);
                return result;
            }
    
            @Override
            public ExecutionFailure waitForFailure() {
                ExecutionFailure failure = delegate.waitForFailure();
                results.add(failure);
                return failure;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // result, to the index of the same tensorlist in the arguments. For `If` op's
    // branch functions, the results and arguments are not usually matched 1-1. This
    // will let us konw which tensorlist result maps to which tensorlist in the
    // arguments. Once we know this info it will help us decide the types of the
    // result tensorlist based on the operand's of the `If` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    	results, err := modload.QueryPackages(ctx, pattern, query, selected, r.checkAllowedOr(query, selected))
    	if len(results) > 0 {
    		pkgMods = make([]module.Version, 0, len(results))
    		for _, qr := range results {
    			pkgMods = append(pkgMods, qr.Mod)
    		}
    	}
    	return pkgMods, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    						if osIsNotExist(verr) {
    							resp.Results[i] = checkPartVolumeNotFound
    						}
    						continue
    					}
    				}
    			}
    			if osErrToFileErr(err) == errFileNotFound {
    				resp.Results[i] = checkPartFileNotFound
    			}
    			continue
    		}
    		if st.Mode().IsDir() {
    			resp.Results[i] = checkPartFileNotFound
    			continue
    		}
    		// Check if shard is truncated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    func convertVirtualService(r configContext) []config.Config {
    	result := []config.Config{}
    	for _, obj := range r.TCPRoute {
    		result = append(result, buildTCPVirtualService(r, obj)...)
    	}
    
    	for _, obj := range r.TLSRoute {
    		result = append(result, buildTLSVirtualService(r, obj)...)
    	}
    
    	// for gateway routes, build one VS per gateway+host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/batch-handlers.go

    }
    
    func (j *BatchJobPool) resume() {
    	results := make(chan itemOrErr[ObjectInfo], 100)
    	ctx, cancel := context.WithCancel(j.ctx)
    	defer cancel()
    	if err := j.objLayer.Walk(ctx, minioMetaBucket, batchJobPrefix, results, WalkOptions{}); err != nil {
    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    		fc |= 2
    	}
    	if fcs.C {
    		fc |= 4
    	}
    	if fcs.V {
    		fc |= 8
    	}
    	return fc
    }
    
    // Note: addFlags(x,y) != subFlags(x,-y) in some situations:
    //  - the results of the C flag are different
    //  - the results of the V flag when y==minint are different
    
    // addFlags64 returns the flags that would be set from computing x+y.
    func addFlags64(x, y int64) flagConstant {
    	var fcb flagConstantBuilder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    // quality in this case).
    func encodeValue(ctxt *obj.Link, b, v ID) (uint64, bool) {
    	if ctxt.Arch.PtrSize == 8 {
    		result := uint64(b)<<32 | uint64(uint32(v))
    		//ctxt.Logf("b %#x (%d) v %#x (%d) -> %#x\n", b, b, v, v, result)
    		return result, true
    	}
    	if ctxt.Arch.PtrSize != 4 {
    		panic("unexpected pointer size")
    	}
    	if ID(int16(b)) != b || ID(int16(v)) != v {
    		return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
            result.assertTaskOrder(":b:producer", ":resolve")
            result.assertTaskSkipped(":additionalFile")
            result.assertTaskSkipped(":a:producer")
            result.assertTaskSkipped(":b:producer")
            outputContains("result = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      # interface is added, and it seems to subsume the routes of the "Ethernet"
      # interface (trying to add routes on the Ethernet interface at this point just
      # results in "New-NetRoute : Element not found" errors). I don't know what's
      # up with that, but since it's hard to know what's the right thing to do here
      # we just try to add the route on all of the network adapters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top