Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for checkSeq (0.58 sec)

  1. src/cmd/cgo/out.go

    	}
    }
    
    // Construct a gcc struct matching the gc argument frame.
    // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
    // These assumptions are checked by the gccProlog.
    // Also assumes that gc convention is to word-align the
    // input and output parameters.
    func (p *Package) structType(n *Name) (string, int64) {
    	var buf strings.Builder
    	fmt.Fprint(&buf, "struct {\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    		base.Fatalf("go: -insecure flag is no longer supported; use GOINSECURE instead")
    	}
    
    	modload.ForceUseModules = true
    
    	// Do not allow any updating of go.mod until we've applied
    	// all the requested changes and checked that the result matches
    	// what was requested.
    	modload.ExplicitWriteGoMod = true
    
    	// Allow looking up modules for import paths when outside of a module.
    	// 'go get' is expected to do this, unlike other commands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If you need to invalidate the cache, simply delete that directory:
    
    ----
    ❯ rm -rf .gradle/configuration-cache
    ----
    
    Configuration cache entries are checked periodically (at most every 24 hours) for whether they are still in use.
    They are deleted if they haven't been used for 7 days.
    
    [[config_cache:stable]]
    == Stable configuration cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

    import java.util.stream.Collector;
    import java.util.stream.Stream;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Sets}.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation.go

    	allErrs := field.ErrorList{}
    	if obj.Spec.ManualSelector != nil && *obj.Spec.ManualSelector {
    		return allErrs
    	}
    
    	if obj.Spec.Selector == nil {
    		return allErrs // This case should already have been checked in caller.  No need for more errors.
    	}
    
    	// If somehow uid was unset then we would get "controller-uid=" as the selector
    	// which is bad.
    	if obj.ObjectMeta.UID == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/winkernel/proxier.go

    			allEndpointsNonServing = proxier.isAllEndpointsNonServing(svcName, svcInfo.localTrafficDSR)
    			someEndpointsServing = !allEndpointsNonServing
    			klog.V(4).InfoS("Terminating status checked for all endpoints", "svcClusterIP", svcInfo.ClusterIP(), "allEndpointsTerminating", allEndpointsTerminating, "allEndpointsNonServing", allEndpointsNonServing, "localTrafficDSR", svcInfo.localTrafficDSR)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                  per_tensor.getZeroPoint(), per_tensor.getStorageTypeMin() - 1,
                  per_tensor.getStorageTypeMax());
            } else {
              return;  // Should not reach here, as it's already checked.
            }
            auto new_output_type = new_qtype.castFromExpressedType(
                mlir::quant::UniformQuantizedType::castToExpressedType(
                    value.getType()));
    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. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      (void)LiftArgRetResourcesForFunction(cond, remaining_resource_data_types,
                                           [&](int64_t index, Value value) {
                                             // We already checked that cond should
                                             // not have variable writes.
                                             assert(false && "Should not happen");
                                           });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	} else if savedCondition != nil && currentReadyCondition != nil && savedCondition.LastHeartbeatTime != currentReadyCondition.LastHeartbeatTime {
    		var transitionTime metav1.Time
    		// If ReadyCondition changed since the last time we checked, we update the transition timestamp to "now",
    		// otherwise we leave it as it is.
    		if savedCondition.LastTransitionTime != currentReadyCondition.LastTransitionTime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top