Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 189 for valid (0.08 sec)

  1. src/regexp/syntax/parse.go

    		return "", &Error{ErrInvalidRepeatSize, before[:len(before)-len(after)]}
    	}
    
    	return after, nil
    }
    
    // repeatIsValid reports whether the repetition re is valid.
    // Valid means that the combination of the top-level repetition
    // and any inner repetitions does not exceed n copies of the
    // innermost thing.
    // This function rewalks the regexp tree and is called for every repetition,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

        void setValue(S segment, E entry, V value);
      }
    
      /**
       * An entry in a hash table of a {@link Segment}.
       *
       * <p>Entries in the map can be in the following states:
       *
       * <p>Valid: - Live: valid key/value are set
       *
       * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up
       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // PSAPI_WORKING_SET_EX_BLOCK contains extended working set information for a page.
    type PSAPI_WORKING_SET_EX_BLOCK uint64
    
    // Valid returns the validity of this page.
    // If this bit is 1, the subsequent members are valid; otherwise they should be ignored.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Valid() bool {
    	return (b & 1) == 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    // returning the maximum of the computed replica counts, a description of the associated metric, and the statuses of
    // all metrics computed.
    // It may return both valid metricDesiredReplicas and an error,
    // when some metrics still work and HPA should perform scaling based on them.
    // If HPA cannot do anything due to error, it returns -1 in metricDesiredReplicas as a failure signal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          returns_from_device);
    
      device_cluster.erase();
    
      return mlir::success();
    }
    
    // Check that cluster results are valid. An result is invalid when it does not
    // have a valid XLA type.
    LogicalResult CheckClusterResults(mlir::tf_device::ClusterOp cluster) {
      for (OpResult result : cluster.getResults()) {
        if (!tensorflow::TypeValidForXLA(result.getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    		ctx, job.Name, types.StrategicMergePatchType, data, metav1.PatchOptions{})
    	return err
    }
    
    // getValidPodsWithFilter returns the valid pods that pass the filter.
    // Pods are valid if they have a finalizer or in uncounted set
    // and, for Indexed Jobs, a valid completion index.
    func getValidPodsWithFilter(jobCtx *syncJobCtx, uncounted sets.Set[string], filter func(*v1.Pod) bool) []*v1.Pod {
    	var result []*v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        void setValue(S segment, E entry, V value);
      }
    
      /**
       * An entry in a hash table of a {@link Segment}.
       *
       * <p>Entries in the map can be in the following states:
       *
       * <p>Valid: - Live: valid key/value are set
       *
       * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up
       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Value input = adaptor.getOperands()[0];
        Value element_shape = adaptor.getOperands()[1];
    
        // If the `element_shape` is a known constant (which is defined when calling
        // `tensor_list_stack`) and also valid (not scalar), we rewrite this op to a
        // trivial Reshape op (that doesn't actually change the input's shape) and
        // also populate the shape info to the op result. The shape of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
       * This field encodes the current state of the future.
       *
       * <p>The valid values are:
       *
       * <ul>
       *   <li>{@code null} initial state, nothing has happened.
       *   <li>{@link Cancellation} terminal state, {@code cancel} was called.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
       * This field encodes the current state of the future.
       *
       * <p>The valid values are:
       *
       * <ul>
       *   <li>{@code null} initial state, nothing has happened.
       *   <li>{@link Cancellation} terminal state, {@code cancel} was called.
    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