Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 228 for Advance (5.1 sec)

  1. src/main/resources/fess_label_ko.properties

    labels.tooltip_search_view=Search View
    labels.tooltip_run_crawler=Run Crawler
    labels.tooltip_forum=Forum
    labels.tooltip_onlinehelp=Help
    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

      return module
          .walk([](mlir::Operation *op) {
            if (llvm::isa<mlir::TF::RestoreV2Op>(op)) {
              return mlir::WalkResult::interrupt();
            }
            return mlir::WalkResult::advance();
          })
          .wasInterrupted();
    }
    }  // namespace tf_saved_model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    func ObserveWatchCount(ctx context.Context, priorityLevel, flowSchema string, count int) {
    	watchCountSamples.WithLabelValues(priorityLevel, flowSchema).Observe(float64(count))
    }
    
    // AddEpochAdvance notes an advance of the progress meter baseline for a given priority level
    func AddEpochAdvance(ctx context.Context, priorityLevel string, success bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    // wait. Every resetInterval the backoff parameters are reset to their initial state.
    // This method is safe to invoke from multiple goroutines, but all calls will advance
    // the backoff state when Factor is set. If Factor is zero, this method is the same as
    // invoking b.DelayFunc() since Steps has no impact without Factor. If resetInterval is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

                                      supported_ops))
            return WalkResult::interrupt();
        }
        MarkVariantInputsOutputs(cluster);
    
        return WalkResult::advance();
      });
    
      if (result.wasInterrupted()) return signalPassFailure();
    
      UnmarkChildren(module);
    
      WarnOnExcessOutsideCompilationOps(module);
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      }
    
      /**
       * Inserts element at current put position, advances, and signals. Call only when occupying
       * monitor.
       */
      private void insert(E x) {
        items[putIndex] = x;
        putIndex = inc(putIndex);
        ++count;
      }
    
      /**
       * Extracts element at current take position, advances, and signals. Call only when occupying
       * monitor.
       */
      private E extract() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      }
    
      /**
       * Inserts element at current put position, advances, and signals. Call only when occupying
       * monitor.
       */
      private void insert(E x) {
        items[putIndex] = x;
        putIndex = inc(putIndex);
        ++count;
      }
    
      /**
       * Extracts element at current take position, advances, and signals. Call only when occupying
       * monitor.
       */
      private E extract() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. src/internal/reflectlite/type.go

    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func add(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    	return unsafe.Pointer(uintptr(p) + x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    }
    
    // rDecrement is the amount by which the progress meter R is wound backwards
    // when needed to avoid overflow.
    const rDecrement = fqrequest.MaxSeatSeconds / 2
    
    // highR is the threshold that triggers advance of the epoch.
    // That is, decrementing the global progress meter R by rDecrement.
    const highR = rDecrement + rDecrement/2
    
    // advanceEpoch subtracts rDecrement from the global progress meter R
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements scanner, a lexical tokenizer for
    // Go source. After initialization, consecutive calls of
    // next advance the scanner one token at a time.
    //
    // This file, source.go, tokens.go, and token_string.go are self-contained
    // (`go tool compile scanner.go source.go tokens.go token_string.go` compiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
Back to top