Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 218 for Indices (0.11 sec)

  1. pkg/kubelet/pod/pod_manager.go

    	}
    	if numEC != 0 {
    		metrics.ManagedEphemeralContainers.Add(float64(numEC))
    	}
    }
    
    // updatePodsInternal replaces the given pods in the current state of the
    // manager, updating the various indices. The caller is assumed to hold the
    // lock.
    func (pm *basicManager) updatePodsInternal(pods ...*v1.Pod) {
    	for _, pod := range pods {
    		podFullName := kubecontainer.GetPodFullName(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    	}
    
    	// An IndexListExpr node represents an expression followed by multiple
    	// indices.
    	IndexListExpr struct {
    		X       Expr      // expression
    		Lbrack  token.Pos // position of "["
    		Indices []Expr    // index expressions
    		Rbrack  token.Pos // position of "]"
    	}
    
    	// A SliceExpr node represents an expression followed by slice indices.
    	SliceExpr struct {
    		X      Expr      // expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

        ): ParameterArgumentBinding? {
            fun findParameterByName(name: String): DataParameter? = parameters.find { it.name == name }
            val lastPositionalArgIndex =
                arguments.indices.lastOrNull { arguments[it] is FunctionArgument.Positional } ?: arguments.size
    
            val bindingMap = mutableMapOf<DataParameter, FunctionArgument.ValueArgument>()
            arguments.forEachIndexed { argIndex, arg ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
      //   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
      // If unset, defaults to 0. Replica indices will be in the range:
      //   [0, .spec.replicas).
      // +optional
      optional int32 start = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
      //   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
      // If unset, defaults to 0. Replica indices will be in the range:
      //   [0, .spec.replicas).
      // +optional
      optional int32 start = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction_test.go

    	}
    	return pod
    }
    
    func addTaintsToNode(node *corev1.Node, key, value string, indices []int) *corev1.Node {
    	taints := []corev1.Taint{}
    	for _, index := range indices {
    		taints = append(taints, createNoExecuteTaint(index))
    	}
    	node.Spec.Taints = taints
    	return node
    }
    
    var alwaysReady = func() bool { return true }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

            }
    
            override fun encode(
              writer: DerWriter,
              value: T,
            ) {
              val list = decompose(value)
              writer.withTypeHint {
                for (i in list.indices) {
                  val adapter = members[i] as DerAdapter<Any?>
                  adapter.toDer(writer, list[i])
                }
              }
            }
          }
    
        return BasicDerAdapter(
          name = name,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/internal/coverage/decodecounter/decodecounterfile.go

    			} else if err != nil {
    				break
    			}
    			if nc != 0 {
    				break
    			}
    		}
    	} else {
    		nc, err = rdu32()
    	}
    	if err != nil {
    		return false, err
    	}
    
    	// Read package and func indices.
    	p.PkgIdx, err = rdu32()
    	if err != nil {
    		return false, err
    	}
    	p.FuncIdx, err = rdu32()
    	if err != nil {
    		return false, err
    	}
    	if cap(p.Counters) < 1024 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

              }
            }
          }
        }
      }
      return best;
    }
    
    void Rematerializer::Remat(const RematSpec& remat) {
      const int num_inserted = remat.end - remat.begin;
      // Rewrite all operation indices.
      for (auto& tensor : tensors_) {
        std::for_each(std::lower_bound(tensor.operations.begin(),
                                       tensor.operations.end(), remat.insert),
                      tensor.operations.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    	tparams      *TypeParamList // local type parameters
    	paramNames   bool           // if set, write function parameter names, otherwise, write types only
    	tpSubscripts bool           // if set, write type parameter indices as subscripts
    	pkgInfo      bool           // package-annotate first unexported-type field to avoid confusing type description
    }
    
    func newTypeWriter(buf *bytes.Buffer, qf Qualifier) *typeWriter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top