Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 251 for subname (0.13 sec)

  1. pkg/proxy/ipvs/ipset/ipset_test.go

    		SetType:  HashIPPort,
    	}
    	setName := "NOT"
    	fcmd := fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{
    			// Success
    			func() ([]byte, []byte, error) {
    				return []byte("10.120.7.100,tcp:8080 is in set " + setName + "."), nil, nil
    			},
    			// Failure
    			func() ([]byte, []byte, error) {
    				return []byte("192.168.1.3,tcp:8080 is NOT in set " + setName + "."), nil, &fakeexec.FakeExitError{Status: 1}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            when:
            wrapper.setScriptFile("build/$inName")
    
            then:
            getProject().file("build/$outName") == wrapper.getBatchScript()
    
            where:
            inName           | outName
            "gradle.sh"      | "gradle.bat"
            "gradle-wrapper" | "gradle-wrapper.bat"
        }
    
        def "determines properties file path from jar path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/ArtifactRepository.java

         * been added to the container.
         *
         * @param name The name. Must not be null.
         * @throws IllegalStateException If the name is set after it has been added to the container.
         */
        void setName(String name);
    
        /**
         * Configures the content of this repository.
         * @param configureAction the configuration action
         *
         * @since 5.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                        conf(baseMethod("base:name:1.0"))
                        conf(subMethod("sub:name:1.0"))
                    }
                }
            """
            file("settings.gradle") << defineSettings(typeSafeProjectAccessors)
    
            expect:
            succeeds("build")
            outputContains("base:name:1.0")
            outputContains("sub:name:1.0")
    
            where:
            typeSafeProjectAccessors << [true, false]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestExecutionIntegrationTest.groovy

                    @Test
                    public void checkThreadName() {
                        assertEquals("Test worker", Thread.currentThread().getName());
                        Thread.currentThread().setName(getClass().getSimpleName());
                    }
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
            methodInfo.setName('MockMethod')
            intercept(new MethodInvocation(null, null, null, null, null, methodInfo, null) {
                void proceed() throws Throwable {
                    action.execute(null)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/es/user/bsentity/BsRole.java

        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaProject.java

        public DefaultIdeaProject setJdkName(String jdkName) {
            this.jdkName = jdkName;
            return this;
        }
    
        public String getName() {
            return name;
        }
    
        public DefaultIdeaProject setName(String name) {
            this.name = name;
            return this;
        }
    
        public String getDescription() {
            return description;
        }
    
        public DefaultIdeaProject setDescription(String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            this.setVersion(original.getVersion());
            this.setGoalPrefix(original.getGoalPrefix());
            this.setInheritedByDefault(original.isInheritedByDefault());
            this.setName(original.getName());
            this.setDescription(original.getDescription());
            this.setRequiredMavenVersion(original.getRequiredMavenVersion());
            this.setRequiredJavaVersion(original.getRequiredJavaVersion());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WbProperty.java

            this.name = Preconditions.checkNotNull(name);
            this.value = Preconditions.checkNotNull(value);
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getValue() {
            return value;
        }
    
        public void setValue(String value) {
            this.value = value;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top