Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for indexFor (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val1) == string",
    				"size(self.val1) == 12",
    
    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    				"self.val1.charAt(3) == 'k'",
    				"self.val1.indexOf('o') == 1",
    				"self.val1.indexOf('o', 2) == 2",
    				"self.val1.replace(' ', 'x') == 'Rookxtakesx👑'",
    				"self.val1.replace(' ', 'x', 1) == 'Rookxtakes 👑'",
    				"self.val1.split(' ') == ['Rook', 'takes', '👑']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            when:
            succeeds ":util:resolve"
    
            def transformationPosition1 = output.indexOf("> Transform lib1.jar (project :lib) with FileSizer")
            def transformationPosition2 = output.indexOf("> Transform lib2.jar (project :lib) with FileSizer")
            def taskPosition = output.indexOf("> Task :util:resolve")
    
            then:
            transformationPosition1 >= 0
            transformationPosition2 >= 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	podsLister       corelisters.PodLister
    	claimsLister     corelisters.PersistentVolumeClaimLister
    	setsLister       appslisters.StatefulSetLister
    	podsIndexer      cache.Indexer
    	claimsIndexer    cache.Indexer
    	setsIndexer      cache.Indexer
    	revisionsIndexer cache.Indexer
    	createPodTracker requestTracker
    	updatePodTracker requestTracker
    	deletePodTracker requestTracker
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    final double LOG_10; private static final float FLOAT_RELATIVE_ERROR; private static final double DOUBLE_RELATIVE_ERROR; private static String[] LEADING_ZEROS; private static final double[] DOUBLE_POW_10; private void TypeFormat(); public static int indexOf(CharSequence, CharSequence, int); public static boolean parseBoolean(CharSequence); public static short parseShort(CharSequence); public static short parseShort(CharSequence, int); public static int parseInt(CharSequence); public static int parseInt(CharSequence,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    					},
    				},
    			},
    		}
    		newPod.Finalizers = append(newPod.Finalizers, batch.JobTrackingFinalizer)
    		pods = append(pods, newPod)
    	}
    	return pods
    }
    
    func setPodsStatuses(podIndexer cache.Indexer, job *batch.Job, pendingPods, activePods, succeededPods, failedPods, terminatingPods, readyPods int) {
    	for _, pod := range newPodList(pendingPods, v1.PodPending, job) {
    		podIndexer.Add(pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top