Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 337 for Result (0.26 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * known yet. That result, though not yet known, cannot be overridden by a call to a {@code set*}
       * method, only by a call to {@link #cancel}.
       *
       * <p>Beware of completing a future while holding a lock. Its listeners may do slow work or
       * acquire other locks, risking deadlocks.
       *
       * @param throwable the exception to be used as the failed result
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "provides resolution result"() {
            def config = conf("conf")
            def resolvedComponentResult = Mock(ResolvedComponentResult)
            Supplier<ResolvedComponentResult> rootSource = () -> resolvedComponentResult
            def result = new MinimalResolutionResult(rootSource, ImmutableAttributes.EMPTY)
            def graphResults = new DefaultVisitedGraphResults(result, [] as Set, null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          def main(self, x):
            x1 = nn_ops.conv2d(x, self.w, padding='SAME')
            x2, _ = while_loop_ops.while_loop(
                self.condition, self.body, [x, self.w]
            )
            result = x1 + x2
            return {'output': result}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    GTEST_API_ AssertionResult AssertionSuccess();
    
    // Makes a failed assertion result.
    GTEST_API_ AssertionResult AssertionFailure();
    
    // Makes a failed assertion result with the given failure message.
    // Deprecated; use AssertionFailure() << msg.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_test.go

    	result.CPU.UsageCoreNanoSeconds = &usageCoreNanoSeconds
    
    	result.Memory.Time = metav1.NewTime(timestamp)
    	workingSetBytes := uint64(seed + offsetCRI + offsetMemWorkingSetBytes)
    	result.Memory.WorkingSetBytes = &workingSetBytes
    
    	result.Rootfs.Time = metav1.NewTime(timestamp)
    	usedBytes := uint64(seed + offsetCRI + offsetFsUsage)
    	result.Rootfs.UsedBytes = &usedBytes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	params = p.parseParameters(scope, true)
    	results = p.parseResult(scope)
    
    	return
    }
    
    func (p *parser) parseFuncType() (*ast.FuncType, *ast.Scope) {
    	if p.trace {
    		defer un(trace(p, "FuncType"))
    	}
    
    	pos := p.expect(token.FUNC)
    	scope := ast.NewScope(p.topScope) // function scope
    	params, results := p.parseSignature(scope)
    
    	return &ast.FuncType{pos, params, results}, scope
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ExcludeSpec result = moduleExclusions.excludeAny(edgeExclusions, nodeExclusions);
            // We use a set here because for excludes, order of edges is irrelevant
            // so we hit the cache more by using a set
            previousIncomingEdgeCount = incomingEdgeCount;
            previousIncomingHash = incomingHash;
            cachedModuleResolutionFilter = result;
            return result;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    		t.Fatal("exec error:", err)
    	}
    	result := b.String()
    	if result != expect {
    		t.Errorf("expected %q got %q", expect, result)
    	}
    	// Then direct to execution.
    	b.Reset()
    	err = tmpl.ExecuteTemplate(&b, "tree", tree)
    	if err != nil {
    		t.Fatal("exec error:", err)
    	}
    	result = b.String()
    	if result != expect {
    		t.Errorf("expected %q got %q", expect, result)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    			proposed = int32(math.Ceil(float64(periodStartReplicas) * (1 + float64(policy.Value)/100)))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    	return result
    }
    
    // calculateScaleDownLimitWithBehavior returns the maximum number of pods that could be deleted for the given HPAScalingRules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    		}
    		if !r.AllNodes() {
    			pluginsWithNodes = append(pluginsWithNodes, pl.Name())
    		}
    		result = result.Merge(r)
    		if !result.AllNodes() && len(result.NodeNames) == 0 {
    			msg := fmt.Sprintf("node(s) didn't satisfy plugin(s) %v simultaneously", pluginsWithNodes)
    			if len(pluginsWithNodes) == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top