Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for checkIn (0.12 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

          throw new IllegalStateException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /*
       * Preconditions.checkNotNull is *intended* for performing eager null checks on parameters that a
       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. cmd/iam.go

    	return sys.store.PolicyDBGet(name, groups...)
    }
    
    const sessionPolicyNameExtracted = policy.SessionPolicyName + "-extracted"
    
    // IsAllowedServiceAccount - checks if the given service account is allowed to perform
    // actions. The permission of the parent user is checked first
    func (sys *IAMSys) IsAllowedServiceAccount(args policy.Args, parentUser string) bool {
    	// Verify if the parent claim matches the parentUser.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            container.size() == 5
            !container.empty
        }
    
        def "can check for membership"() {
            given:
            addToContainer(b)
            addToContainer(a)
    
            expect:
            !container.contains(c)
            container.contains(a)
        }
    
        def "provider for element is queried when membership checked"() {
            containerAllowsExternalProviders()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

    import java.util.function.Consumer;
    import java.util.stream.Collector;
    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Set} instances. Also see this class's counterparts
     * {@link Lists}, {@link Maps} and {@link Queues}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    import java.util.Set;
    import java.util.Vector;
    import junit.framework.AssertionFailedError;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Iterators}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    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. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        return success();
      }
    };
    
    // Checks if input weights are quantized only.
    bool IsQuantizedCallforDynamicRange(TF::PartitionedCallOp call_op) {
      bool has_quantized_types_for_weights = false;
      std::unique_ptr<OpQuantSpec> spec = GetTFOpQuantSpec(call_op);
    
      for (int32_t cur_idx = 0; cur_idx < call_op.getArgs().size(); cur_idx++) {
        // Check if the only the weight index has QuantizeCastOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	if gcBlackenEnabled == 0 {
    		throw("gcControllerState.findRunnable: blackening not enabled")
    	}
    
    	// Since we have the current time, check if the GC CPU limiter
    	// hasn't had an update in a while. This check is necessary in
    	// case the limiter is on but hasn't been checked in a while and
    	// so may have left sufficient headroom to turn off again.
    	if now == 0 {
    		now = nanotime()
    	}
    	if gcCPULimiter.needUpdate(now) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // The caller is also responsible for cgo pointer checks if this
    // may be writing Go pointers into non-Go memory.
    //
    // Pointer data is not maintained for allocations containing
    // no pointers at all; any caller of bulkBarrierPreWrite must first
    // make sure the underlying allocation contains pointers, usually
    // by checking typ.PtrBytes.
    //
    // The typ argument is the type of the space at src and dst (and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test.cc

      // Try to retrieve lengths before building the attributes (should fail)
      EXPECT_EQ(-1, TFE_OpGetInputLength(identityOp, "input", status));
      CHECK_NE(TF_OK, TF_GetCode(status)) << TF_Message(status);
      EXPECT_EQ(-1, TFE_OpGetOutputLength(identityOp, "output", status));
      CHECK_NE(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      TFE_TensorHandle* inputs[] = {input1, input2};
      TFE_OpAddInputList(identityOp, inputs, 2, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		initPVCs []*v1.PersistentVolumeClaim
    
    		bindings        []*BindingInfo
    		provisionedPVCs []*v1.PersistentVolumeClaim
    
    		// api updates before checking
    		apiPVs  []*v1.PersistentVolume
    		apiPVCs []*v1.PersistentVolumeClaim
    
    		// delete objects before checking
    		deletePVs  bool
    		deletePVCs bool
    
    		// Expected return values
    		shouldFail    bool
    		expectedBound bool
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top