Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for Appendp (0.16 sec)

  1. pkg/apis/batch/validation/validation_test.go

    					SuccessPolicy: &batch.SuccessPolicy{
    						Rules: func() []batch.SuccessPolicyRule {
    							var rules []batch.SuccessPolicyRule
    							for i := 0; i < 21; i++ {
    								rules = append(rules, batch.SuccessPolicyRule{
    									SucceededCount: ptr.To[int32](5),
    								})
    							}
    							return rules
    						}(),
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    func validateReplicationDestination(ctx context.Context, bucket string, rCfg *replication.Config, checkRemote bool) (bool, APIError) {
    	var arns []string
    	if rCfg.RoleArn != "" {
    		arns = append(arns, rCfg.RoleArn)
    	} else {
    		for _, rule := range rCfg.Rules {
    			arns = append(arns, rule.Destination.String())
    		}
    	}
    	var sameTarget bool
    	for _, arnStr := range arns {
    		arn, err := madmin.ParseARN(arnStr)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    				readyLast = c.LastTransitionTime.Time.Add(time.Duration(ds.Spec.MinReadySeconds) * time.Second)
    			}
    		}
    		nodeName, _ := util.GetTargetNodeName(pod)
    
    		lines = append(lines, fmt.Sprintf("node=%s current=%-5t ready=%-5t age=%-4d pod=%s now=%d available=%d",
    			nodeName,
    			hash == pod.Labels[apps.ControllerRevisionHashLabelKey],
    			ready,
    			now.Unix(),
    			pod.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				if enablePodReadyToStartContainersCondition {
    					expected.Conditions = append([]v1.PodCondition{test.expectedPodReadyToStartContainersCondition}, expected.Conditions...)
    				}
    				if test.enablePodDisruptionConditions {
    					expected.Conditions = append([]v1.PodCondition{test.expectedPodDisruptionCondition}, expected.Conditions...)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/generated.pb.go

    	}
    	i--
    	dAtA[i] = 0x1a
    	if len(m.UpdatedAnnotations) > 0 {
    		keysForUpdatedAnnotations := make([]string, 0, len(m.UpdatedAnnotations))
    		for k := range m.UpdatedAnnotations {
    			keysForUpdatedAnnotations = append(keysForUpdatedAnnotations, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForUpdatedAnnotations)
    		for iNdEx := len(keysForUpdatedAnnotations) - 1; iNdEx >= 0; iNdEx-- {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          lifted_arg_nodes_and_outside_compilation_nodes.emplace_back(
              n, outside_compilation_attr_to_node.at(oc_cluster));
        }
      }
      return lifted_arg_nodes_and_outside_compilation_nodes;
    }
    
    // Append lifted args' types to functional control flow node's `type_attr_name`
    // attribute.
    absl::StatusOr<std::vector<DataType>> UpdateTypesAttribute(
        const std::vector<std::pair<Node*, Node*>>&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    			m[c] = true
    			s.Add(c)
    			inOrder = append(inOrder, c)
    		}
    		if s.Len() != N {
    			t.Fatalf("Len = %v; want %v", s.Len(), N)
    		}
    		for s.Len() > 0 {
    			c, ok := s.TakeRandom()
    			if !ok {
    				t.Fatal("failed to take when non-empty")
    			}
    			if !m[c] {
    				t.Fatal("returned item not in remaining set")
    			}
    			delete(m, c)
    			backOut = append(backOut, c)
    		}
    		if len(m) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    	i--
    	dAtA[i] = 0x1a
    	if len(m.Selector) > 0 {
    		keysForSelector := make([]string, 0, len(m.Selector))
    		for k := range m.Selector {
    			keysForSelector = append(keysForSelector, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForSelector)
    		for iNdEx := len(keysForSelector) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.Selector[string(keysForSelector[iNdEx])]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    formatter.node(type);
                    formatter.append(" is private.");
                    throw new ClassGenerationException(formatter.toString());
                }
                if (Modifier.isFinal(modifiers)) {
                    TreeFormatter formatter = new TreeFormatter();
                    formatter.node(type);
                    formatter.append(" is final.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    }
    
    // Put1 appends one byte to the end of the buffer.
    func (ab *AsmBuf) Put1(x byte) {
    	ab.buf[ab.off] = x
    	ab.off++
    }
    
    // Put2 appends two bytes to the end of the buffer.
    func (ab *AsmBuf) Put2(x, y byte) {
    	ab.buf[ab.off+0] = x
    	ab.buf[ab.off+1] = y
    	ab.off += 2
    }
    
    // Put3 appends three bytes to the end of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top