Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for resume (0.24 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

            setAvailable_Sum("available", opLambda);
        }
    
        public void setAvailable_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "available");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_ExtendedStats() {
            setAvailable_ExtendedStats(null);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebConfigCA.java

            setAvailable_Sum("available", opLambda);
        }
    
        public void setAvailable_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "available");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_ExtendedStats() {
            setAvailable_ExtendedStats(null);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 149K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

            setHitCount_Sum("hitCount", opLambda);
        }
    
        public void setHitCount_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "hitCount");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setHitCount_ExtendedStats() {
            setHitCount_ExtendedStats(null);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 115.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

       ([#122276](https://github.com/kubernetes/kubernetes/pull/122276), [@pohly](https://github.com/pohly))
    - Added a CBOR implementation of `runtime.Serializer`. Until CBOR graduates to Alpha, API servers will refuse to start if configured with CBOR support. ([#122881](https://github.com/kubernetes/kubernetes/pull/122881), [@benluddy](https://github.com/benluddy))
    - Added a alpha feature, behind the `RelaxedEnvironmentVariableValidation` feature gate.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    liveness/readiness probes rewritten. # Setting this to `IfNeeded` will result in the sidecar injector being run again if additional mutations occur. reinvocationPolicy: Never rewriteAppHTTPProbe: true # Templates defines a set of custom injection templates that can be used. For example, defining: # # templates: # hello: | # metadata: # labels: # hello: world # # Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod # being injected with the hello=world labels. # This...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  6. doc/go1.17_spec.html

    <p>
    A function type denotes the set of all functions with the same parameter
    and result types. The value of an uninitialized variable of function type
    is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    FunctionType   = "func" Signature .
    Signature      = Parameters [ Result ] .
    Result         = Parameters | Type .
    Parameters     = "(" [ ParameterList [ "," ] ] ")" .
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

        V result = get(key);
        return (result != null) ? result : defaultValue;
      }
    
      V getOrLoad(K key) throws ExecutionException {
        return get(key, defaultLoader);
      }
    
      ImmutableMap<K, V> getAllPresent(Iterable<?> keys) {
        int hits = 0;
        int misses = 0;
    
        ImmutableMap.Builder<K, V> result = ImmutableMap.builder();
        for (Object key : keys) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

        V result = get(key);
        return (result != null) ? result : defaultValue;
      }
    
      V getOrLoad(K key) throws ExecutionException {
        return get(key, defaultLoader);
      }
    
      ImmutableMap<K, V> getAllPresent(Iterable<?> keys) {
        int hits = 0;
        int misses = 0;
    
        ImmutableMap.Builder<K, V> result = ImmutableMap.builder();
        for (Object key : keys) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top