Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,083 for toint (0.05 sec)

  1. android/guava/src/com/google/common/escape/UnicodeEscaper.java

      /** Constructor for use by subclasses. */
      protected UnicodeEscaper() {}
    
      /**
       * Returns the escaped form of the given Unicode code point, or {@code null} if this code point
       * does not need to be escaped. When called as part of an escaping operation, the given code point
       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/UnicodeEscaper.java

      /** Constructor for use by subclasses. */
      protected UnicodeEscaper() {}
    
      /**
       * Returns the escaped form of the given Unicode code point, or {@code null} if this code point
       * does not need to be escaped. When called as part of an escaping operation, the given code point
       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    			msg := fmt.Sprintf("not in valid range [%d, %d]", minUtilization, maxUtilization)
    			allErrs = append(allErrs, field.Invalid(path.Index(i).Child("utilization"), point.Utilization, msg))
    		}
    
    		if point.Score < minScore || point.Score > maxScore {
    			msg := fmt.Sprintf("not in valid range [%d, %d]", minScore, maxScore)
    			allErrs = append(allErrs, field.Invalid(path.Index(i).Child("score"), point.Score, msg))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    		Name      string
    		Changed   bool
    		OldTaints []v1.Taint
    		NewTaints []v1.Taint
    	}{
    		{
    			Name:      "no taint changed",
    			Changed:   false,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value"}},
    			NewTaints: []v1.Taint{{Key: "key", Value: "value"}},
    		},
    		{
    			Name:      "taint value changed",
    			Changed:   true,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasFPHP     bool // Half precision floating-point instruction set
    	HasASIMDHP  bool // Advanced SIMD half precision instruction set
    	HasCPUID    bool // CPUID identification scheme registers
    	HasASIMDRDM bool // Rounding double multiply add/subtract instruction set
    	HasJSCVT    bool // Javascript conversion from floating-point to integer
    	HasFCMA     bool // Floating-point multiplication and addition of complex numbers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    		{
    			name: "some pods have deletion timestamp and/or phase set and some of the corresponding nodes have an" +
    				"outofservice taint that are not ready",
    			nodes: []node{
    				// terminated pods on this node should be force deleted
    				{name: "worker-0", readyCondition: v1.ConditionFalse, taints: []v1.Taint{{Key: v1.TaintNodeOutOfService,
    					Effect: v1.TaintEffectNoExecute}}},
    				// terminated pods on this node should not be force deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * should be kept after compilation has completed. Useful for joint compilation debugging purposes.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isKeepStubs() {
            return keepStubs;
        }
    
        /**
         * Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Remove Java files in joint compilation'    | ['G', 'J']            | ['G']                         | 'UP-TO-DATE'                 | []                    | ['G', 'G_G']                  | 'Incremental compilation of' | ['G_G']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction.go

    			Message: "Taint manager: deleting due to NoExecute taint",
    		})
    		if updated {
    			if _, _, _, err := utilpod.PatchPodStatus(ctx, c, pod.Namespace, pod.Name, pod.UID, pod.Status, *newStatus); err != nil {
    				return err
    			}
    		}
    	}
    	return c.CoreV1().Pods(ns).Delete(ctx, name, metav1.DeleteOptions{})
    }
    
    func getNoExecuteTaints(taints []v1.Taint) []v1.Taint {
    	result := []v1.Taint{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/image/draw/draw.go

    func (op Op) Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point) {
    	DrawMask(dst, r, src, sp, nil, image.Point{}, op)
    }
    
    // Drawer contains the [Draw] method.
    type Drawer interface {
    	// Draw aligns r.Min in dst with sp in src and then replaces the
    	// rectangle r in dst with the result of drawing src on dst.
    	Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top