Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for Result (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		}
    		result := compilationResults[0]
    		if result.Error != nil {
    			t.Errorf("Expected no compile-time error, got: %v", result.Error)
    		}
    		if expectedCost > 0 {
    			if result.MaxCost != expectedCost {
    				t.Errorf("Wrong cost (expected %d, got %d)", expectedCost, result.MaxCost)
    			}
    		}
    		if expectedCostExceedsLimit > 0 {
    			if result.MaxCost < expectedCostExceedsLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation.go

    				Expression: v.Expression,
    			}
    			result := compiler.CompileAndStoreVariable(variable, plugincel.OptionalVariableDeclarations{
    				HasParams:     paramKind != nil,
    				HasAuthorizer: true,
    				StrictCost:    opts.strictCostEnforcement,
    			}, envType)
    			if result.Error != nil {
    				allErrors = append(allErrors, convertCELErrorToValidationError(fldPath.Child("expression"), variable, result.Error))
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    		a := SplitN([]byte(tt.s), []byte(tt.sep), tt.n)
    
    		// Appending to the results should not change future results.
    		var x []byte
    		for _, v := range a {
    			x = append(v, 'z')
    		}
    
    		result := sliceOfString(a)
    		if !eq(result, tt.a) {
    			t.Errorf(`Split(%q, %q, %d) = %v; want %v`, tt.s, tt.sep, tt.n, result, tt.a)
    			continue
    		}
    		if tt.n == 0 || len(a) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    		}
    		if isComparison(x.Op) {
    			// The result type is independent of operand types
    			// and the operand types must have final types.
    		} else if isShift(x.Op) {
    			// The result type depends only on lhs operand.
    			// The rhs type was updated when checking the shift.
    			check.updateExprType0(x, x.X, typ, final)
    		} else {
    			// The operand types match the result type.
    			check.updateExprType0(x, x.X, typ, final)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

                    .iterator();
        Iterator<Integer> result = Iterators.concat(input);
        assertEquals(1, (int) result.next());
        assertEquals(2, (int) result.next());
        try {
          result.hasNext();
          fail("no exception thrown");
        } catch (NullPointerException e) {
        }
        try {
          result.next();
          fail("no exception thrown");
        } catch (NullPointerException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    		}
    	}
    
    	return result
    }
    
    // GetUsersWithMappedPolicies - safely returns the name of access keys with associated policies
    func (store *IAMStoreSys) GetUsersWithMappedPolicies() map[string]string {
    	cache := store.rlock()
    	defer store.runlock()
    
    	result := make(map[string]string)
    	cache.iamUserPolicyMap.Range(func(k string, v MappedPolicy) bool {
    		result[k] = v.Policies
    		return true
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    requested benchmark results or verbose logging. After the package
    tests for all of the listed packages finish, and their output is
    printed, go test prints a final 'FAIL' status if any package test
    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                      model_ptr));
    
        // Add the results to the value maps. There are two cases: 1. the result
        // tensor does not have min/max values, the original op result is used
        // directly; 2. the result tensor has some min/max values, a stats op is
        // created, then the result of the stats op is used.
        for (const auto& pair : llvm::enumerate(MaybeWrapInControlNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.lock.RLock()
    	defer p.lock.RUnlock()
    	var result []*v1.Pod
    	for _, pInfo := range p.activeQ.List() {
    		result = append(result, pInfo.(*framework.QueuedPodInfo).Pod)
    	}
    	for _, pInfo := range p.podBackoffQ.List() {
    		result = append(result, pInfo.(*framework.QueuedPodInfo).Pod)
    	}
    	for _, pInfo := range p.unschedulablePods.podInfoMap {
    		result = append(result, pInfo.Pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. 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
    - 62.8K bytes
    - Viewed (1)
Back to top