Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 282 for Appendp (0.21 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					case "first" :
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").prepend(d);
    						tmp = obj;
    						break;
    					case "last":
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").append(d);
    						tmp = obj;
    						break;
    					default:
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						if(!position) { position = 0; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if !ok {
    			return nil, nil, mergepatch.ErrBadArgType(m, v)
    		}
    
    		directive, foundDirective := m[directiveMarker]
    		if foundDirective && directive == deleteDirective {
    			toDelete = append(toDelete, v)
    		} else {
    			nonDelete = append(nonDelete, v)
    		}
    	}
    	return nonDelete, toDelete, nil
    }
    
    // normalizeSliceOrder sort `toSort` list by `order`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    		}
    	}
    
    	oldPodStatus := podStatus
    	podStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionTrue,
    	})
    
    	oldPodStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionFalse,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	select {
    	case err := <-errCh:
    		return err
    	default:
    	}
    	return nil
    }
    
    // ensureJobConditionStatus appends or updates an existing job condition of the
    // given type with the given status value. Note that this function will not
    // append to the conditions list if the new condition's status is false
    // (because going from nothing to false is meaningless); it can, however,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			"-fno-builtin",
    		)
    	}
    
    	c = append(c, p.GccOptions...)
    	c = append(c, p.gccMachine()...)
    	if goos == "aix" {
    		c = append(c, "-maix64")
    		c = append(c, "-mcmodel=large")
    	}
    	// disable LTO so we get an object whose symbols we can read
    	c = append(c, "-fno-lto")
    	c = append(c, "-") //read input from standard input
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    		dst = buf
    	}
    	if err := x.data.validate(); err != nil {
    		return nil, err
    	}
    
    	dst = append(dst, xlHeader[:]...)
    	dst = append(dst, xlVersionCurrent[:]...)
    	// Add "bin 32" type header to always have enough space.
    	// We will fill out the correct size when we know it.
    	dst = append(dst, 0xc6, 0, 0, 0, 0)
    	dataOffset := len(dst)
    
    	dst = msgp.AppendUint(dst, xlHeaderVersion)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    if (i == 0) {
                        result.append(syntax.firstArg(argument));
                    } else {
                        result.append(", ");
                        result.append(argument.with(syntax));
                    }
                }
    
                if (onlyArgIsClosure) {
                    result.append(' ');
                } else {
                    result.append(")");
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    		nodesNeedingDaemonPods = append(nodesNeedingDaemonPods, nodesNeedingDaemonPodsOnNode...)
    		podsToDelete = append(podsToDelete, podsToDeleteOnNode...)
    	}
    
    	// Remove unscheduled pods assigned to not existing nodes when daemonset pods are scheduled by scheduler.
    	// If node doesn't exist then pods are never scheduled and can't be deleted by PodGCController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    		if err := isIA5String(name); err != nil {
    			return nil, err
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeDNS, Class: 2, Bytes: []byte(name)})
    	}
    	for _, email := range emailAddresses {
    		if err := isIA5String(email); err != nil {
    			return nil, err
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeEmail, Class: 2, Bytes: []byte(email)})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      const std::string test_data("asdf");
      status = new_file->Append(test_data);
      if (!status.ok()) GTEST_SKIP() << "Append() not supported: " << status;
      status = new_file->Flush();
      if (!status.ok()) GTEST_SKIP() << "Flush() not supported: " << status;
      status = new_file->Close();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
Back to top