Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 161 for replaced (0.36 sec)

  1. src/time/format.go

    //	"Z07:00"     Z or ±hh:mm
    //	"Z07"        Z or ±hh
    //	"Z070000"    Z or ±hhmmss
    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    // Within the format string, the underscores in "_2" and "__2" represent spaces
    // that may be replaced by digits if the following number has multiple digits,
    // for compatibility with fixed-width Unix time formats. A leading zero represents
    // a zero-padded value.
    //
    // The formats __2 and 002 are space-padded and zero-padded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    	// Cmd.Output method if standard error was not otherwise being
    	// collected.
    	//
    	// If the error output is long, Stderr may contain only a prefix
    	// and suffix of the output, with the middle replaced with
    	// text about the number of omitted bytes.
    	//
    	// Stderr is provided for debugging, for inclusion in error messages.
    	// Users with other needs should redirect Cmd.Stderr as needed.
    	Stderr []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	//
    	// An in-memory cache must be replaced only if we know for sure that the
    	// values loaded from disk are not stale. They might be stale if the
    	// cached.updatedAt is more recent than the refresh cycle began.
    	if cache.updatedAt.Before(loadedAt) {
    		// No one has updated anything since the config was loaded,
    		// so we just replace whatever is on the disk into memory.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. schema/naming.go

    	UniqueName(table, column string) string
    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	// We cannot rely solely on skipping of queueing such jobs for synchronization,
    	// because it is possible a synchronization task is queued for a job, without
    	// the managedBy field, but the job is quickly replaced by another job with
    	// the field. Then, the syncJob might be invoked for a job with the field.
    	if controllerName := managedByExternalController(sharedJob); controllerName != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Removed the following deprecated metrics:
      - node_collector_evictions_number replaced by node_collector_evictions_total
      - scheduler_e2e_scheduling_duration_seconds replaced by scheduler_scheduling_attempt_duration_seconds ([#115209](https://github.com/kubernetes/kubernetes/pull/115209), [@dgrisonnet](https://github.com/dgrisonnet))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

         *  - is in conflict with an existing element (via replacedBy relationship)
         *
         * @param target an element of some sort
         * @param candidates candidates for given element
         * @param replacedBy optional element that replaces the target
         */
        @Nullable
        public Conflict newElement(K target, Collection<? extends T> candidates, @Nullable K replacedBy) {
            if (candidates.isEmpty()) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/dashboard_test.go

    								return checkMetric(cl, p, query, d.excluded)
    							}, retry.Timeout(time.Minute))
    						}
    					}
    				})
    			}
    		})
    }
    
    // Some templates use replacement variables. Instead, replace those with wildcard
    var replacer = strings.NewReplacer(
    	"$dstns", ".*",
    	"$dstwl", ".*",
    	"$service", ".*",
    	"$srcns", ".*",
    	"$srcwl", ".*",
    	"$namespace", ".*",
    	"$workload", ".*",
    	"$dstsvc", ".*",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool RankedAndSameRank(TensorType lhs, TensorType rhs) {
      return lhs.hasRank() && rhs.hasRank() && lhs.getRank() == rhs.getRank();
    }
    
    // Creates a compatible RankedTensorType where mismatched dimensions are
    // replaced with dynamic sizes.
    RankedTensorType GetCompatibleRankedTensorType(RankedTensorType lhs,
                                                   RankedTensorType rhs) {
      assert(lhs.getRank() == rhs.getRank());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        const int operation_index = item.index();
        if (inst.hasTrait<mlir::OpTrait::IsTerminator>()) break;
        // For "quant.stats" op, it's used to store the quantization parameters
        // info and its output should be then replaced by its input value.
        if (auto quant_stats_op =
                llvm::dyn_cast<mlir::quantfork::StatisticsOp>(inst)) {
          continue;
        }
        std::vector<int32_t> intermediates;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top