Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 485 for i$ (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    				return err
    			}
    		}
    	} else {
    		out.OneOf = nil
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    		*out = make([]apiextensions.JSONSchemaProps, len(*in))
    		for i := range *in {
    			if err := Convert_v1_JSONSchemaProps_To_apiextensions_JSONSchemaProps(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    				return err
    			}
    		}
    	} else {
    		out.OneOf = nil
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    		*out = make([]apiextensions.JSONSchemaProps, len(*in))
    		for i := range *in {
    			if err := Convert_v1beta1_JSONSchemaProps_To_apiextensions_JSONSchemaProps(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nc.knownNodeSet[added[i].Name] = added[i]
    		nc.addPodEvictorForNewZone(logger, added[i])
    		nc.markNodeAsReachable(ctx, added[i])
    	}
    
    	for i := range deleted {
    		logger.V(1).Info("Controller observed a Node deletion", "node", klog.KRef("", deleted[i].Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	return int16(i)
    }
    func auxIntToInt32(i int64) int32 {
    	return int32(i)
    }
    func auxIntToInt64(i int64) int64 {
    	return i
    }
    func auxIntToUint8(i int64) uint8 {
    	return uint8(i)
    }
    func auxIntToFloat32(i int64) float32 {
    	return float32(math.Float64frombits(uint64(i)))
    }
    func auxIntToFloat64(i int64) float64 {
    	return math.Float64frombits(uint64(i))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

      /**
       * Creates a {@code LinkedHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth. This behavior cannot be
       * broadly guaranteed, but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed
       * that the method isn't inadvertently <i>oversizing</i> the returned set.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    // For example for the code:
    //
    //	a[i] = 4
    //	foo(a[i])
    //
    // The compiler will generate the following code:
    //
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	a[i] = 4
    //	if i >= len(a) {
    //	    panic("not in bounds")
    //	}
    //	foo(a[i])
    //
    // The second comparison i >= len(a) is clearly redundant because if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

      /**
       * Creates a {@code LinkedHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth. This behavior cannot be
       * broadly guaranteed, but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed
       * that the method isn't inadvertently <i>oversizing</i> the returned set.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    			methods [2][]string // method strings
    		)
    		var wg sync.WaitGroup
    		for i := 0; i < 2; i++ {
    			i := i
    			wg.Add(1)
    			go func() {
    				defer wg.Done()
    
    				counts[i] = inst.NumMethods()
    				for mi := 0; mi < counts[i]; mi++ {
    					methods[i] = append(methods[i], inst.Method(mi).String())
    				}
    			}()
    		}
    		wg.Wait()
    
    		if counts[0] != counts[1] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            String[] secondSegments = second.split("\\.");
            for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
                int result = Long.valueOf(i < firstSegments.length ? firstSegments[i] : "0")
                        .compareTo(Long.valueOf(i < secondSegments.length ? secondSegments[i] : "0"));
                if (result != 0) {
                    return result;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    	}
    	// Initiate Multipart Upload on bucketNames[2].
    	//  Used to test the listing for the case of multiple objects for a given bucket.
    	for i := 0; i < 6; i++ {
    		res, err = obj.NewMultipartUpload(context.Background(), bucketNames[2], objectNames[i], opts)
    		if err != nil {
    			// Failed to create NewMultipartUpload, abort.
    			t.Fatalf("%s : %s", instanceType, err.Error())
    		}
    		// uploadIds [4-9].
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top