Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for ind1 (0.05 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

                return;
            }
            int ind1 = name.indexOf(':');
            int ind2 = name.lastIndexOf(':');
    
            if (ind1 == -1 || ind2 == -1) {
                return;
            }
    
            this.groupId = name.substring(0, ind1);
            if (ind1 == ind2) {
                this.artifactId = name.substring(ind1 + 1);
            } else {
                this.artifactId = name.substring(ind1 + 1, ind2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_util.go

    	}
    	portal := device[0:ind1]
    	ind2 := strings.Index(device, "iqn.")
    	if ind2 < 0 {
    		ind2 = strings.Index(device, "eui.")
    	}
    	if ind2 < 0 {
    		return "", "", fmt.Errorf("iscsi detach disk: no iqn in %s", device)
    	}
    	ind := strings.LastIndex(device, "-lun-")
    	iqn := device[ind2:ind]
    	return portal, iqn, nil
    }
    
    // Remove duplicates or string
    func removeDuplicate(s []string) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/scope.go

    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    	fmt.Fprintf(w, "%s%s scope %p {\n", indn, s.comment, s)
    
    	indn1 := indn + ind
    	for _, name := range s.Names() {
    		fmt.Fprintf(w, "%s%s\n", indn1, s.Lookup(name))
    	}
    
    	if recurse {
    		for _, s := range s.children {
    			s.WriteTo(w, n+1, recurse)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/scope.go

    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    	fmt.Fprintf(w, "%s%s scope %p {\n", indn, s.comment, s)
    
    	indn1 := indn + ind
    	for _, name := range s.Names() {
    		fmt.Fprintf(w, "%s%s\n", indn1, s.Lookup(name))
    	}
    
    	if recurse {
    		for _, s := range s.children {
    			s.WriteTo(w, n+1, recurse)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                                         "clearProperty('some.property')",
                                     ], [false, true]].combinations()
            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
        def "#setProperties is instrumented in dynamic Groovy #indyStatus"() {
            def configurationCache = newConfigurationCacheFixture()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/plugins/GroovyJarFileTest.groovy

            "/lib/groovy-2.0.5-indy.jar" | "2.0.5" | "org.codehaus.groovy:groovy:2.0.5:indy"
            "/lib/groovy-4.0.0-indy.jar" | "4.0.0" | "org.apache.groovy:groovy:4.0.0:indy"
            "/lib/groovy-4.1.0-indy.jar" | "4.1.0" | "org.apache.groovy:groovy:4.1.0:indy"
            "/lib/groovy-5.0.2-indy.jar" | "5.0.2" | "org.apache.groovy:groovy:5.0.2:indy"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 20:09:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/ClassifierToVariantResolveIntegrationTest.groovy

                    .variant("apiElementsIndy", ['org.gradle.usage': Usage.JAVA_API, 'groovy.runtime': 'indy']) {
                        artifact("lib-1.0-indy.jar")
                    }
                    .variant("runtimeElementsIndy", ['org.gradle.usage': Usage.JAVA_RUNTIME, 'groovy.runtime': 'indy']) {
                        artifact("lib-1.0-indy.jar")
                    }
                    .withModuleMetadata()
                    .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. pkg/scheduler/profile/profile_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    var fakeRegistry = frameworkruntime.Registry{
    	"QueueSort": newFakePlugin("QueueSort"),
    	"Bind1":     newFakePlugin("Bind1"),
    	"Bind2":     newFakePlugin("Bind2"),
    	"Another":   newFakePlugin("Another"),
    }
    
    func TestNewMap(t *testing.T) {
    	cases := []struct {
    		name    string
    		cfgs    []config.KubeSchedulerProfile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

         * @return the list of test cases
         */
        abstract def testCases()
    
        /**
         * Produces a list of indy compilation modes. Each test case from {@link #testCases()} will run in every mode from the returned list.
         * @return the list of indy modes
         */
        def indyModes() {
            return [true, false]
        }
    
        final def testCasesWithIndyModes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/service/impl/EsDataServiceTest.java

            final AccessResult accessResult3 = dataService.getAccessResult("id1", "http://www.id1.com/");
            assertNotNull(accessResult3);
            assertEquals("text/html", accessResult3.getMimeType());
    
            dataService.delete("id1");
    
            final AccessResult accessResult4 = dataService.getAccessResult("id1", "http://www.id1.com/");
            assertNull(accessResult4);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top