Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 182 for gethostname (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/RenamingCopyAction.java

        }
    
        @Override
        public void execute(FileCopyDetails fileCopyDetails) {
            RelativePath path = fileCopyDetails.getRelativePath();
            String newName = transformer.transform(path.getLastName());
            if (newName != null) {
                path = path.replaceLastName(newName);
                fileCopyDetails.setRelativePath(path);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/publish/AbstractPublishArtifactTest.groovy

        private static final String TEST_CLASSIFIER = "classifier";
        private static final Date TEST_DATE = new Date();
    
        protected File getTestFile() {
            TEST_FILE
        }
    
        protected String getTestName() {
            TEST_NAME
        }
    
        protected String getTestExt() {
            TEST_EXT
        }
    
        protected String getTestType() {
            TEST_TYPE
        }
    
        protected String getTestClassifier() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 11:02:13 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/volume_manager_test.go

    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	testHostname = "test-hostname"
    )
    
    func TestGetMountedVolumesForPodAndGetVolumesInUse(t *testing.T) {
    	tests := []struct {
    		name            string
    		pvMode, podMode v1.PersistentVolumeMode
    		expectMount     bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of clustername, used in parameter comment. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceExperiment.java

            this.testProject = testProject;
            this.scenario = scenario;
        }
    
        public String getDisplayName() {
            return getScenario().getTestName() + " | " + getTestProject() + " | " + scenario.getSimpleClassName();
        }
    
        public String getTestProject() {
            return testProject;
        }
    
        public PerformanceScenario getScenario() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Funnel.java

     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
     *   public void funnel(Person person, PrimitiveSink into) {
     *     into.putUnencodedChars(person.getFirstName())
     *         .putUnencodedChars(person.getLastName())
     *         .putInt(person.getAge());
     *   }
     * }
     * }</pre>
     *
     * @author Dimitris Andreou
     * @since 11.0
     */
    @Beta
    @DoNotMock("Implement with a lambda")
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/modelRules/modelDsl/groovy/build.gradle

    @Managed
    interface Address {
        String getCity()
        void setCity(String city)
    }
    
    @Managed
    interface Person {
        String getFirstName()
        void setFirstName(String n)
    
        String getLastName()
        void setLastName(String n)
    
        Address getAddress()
    }
    
    class PersonRules extends RuleSource {
        @Model
        void people(ModelMap<Person> people) {
        }
    }
    
    apply plugin: PersonRules
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Funnel.java

     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
     *   public void funnel(Person person, PrimitiveSink into) {
     *     into.putUnencodedChars(person.getFirstName())
     *         .putUnencodedChars(person.getLastName())
     *         .putInt(person.getAge());
     *   }
     * }
     * }</pre>
     *
     * @author Dimitris Andreou
     * @since 11.0
     */
    @Beta
    @DoNotMock("Implement with a lambda")
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker_test.go

    			NodeName:  ptr.To(testHostname),
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To(""),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	namedPortLocal := func(eps *discovery.EndpointSlice) {
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"1.1.1.1"},
    			NodeName:  ptr.To(testHostname),
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/HostPlatform.groovy

            if (installDir instanceof TestFile) {
                return new NativeInstallationFixture((TestFile) installDir, os)
            }
            return new NativeInstallationFixture(file(installDir), os)
        }
    
        String getOsName() {
            return System.getProperty("os.name")
        }
    
        String getArchName() {
            return DefaultNativePlatform.currentArchitecture.name
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top