Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 146 for gethostname (0.19 sec)

  1. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/src/main/java/com/acme/Person.java

            this.firstName = firstName;
            this.lastName = lastName;
        }
    
        public String getFirstName() {
            return firstName;
        }
    
        public String getLastName() {
            return lastName;
        }
    
        // ...
    
    // end::sample[]
        public boolean equals(Object object) {
            if (this == object) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/wasmplugin_test.go

    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    		if c.testHostname != "" {
    			sendTrafficToHostname(t, check.ResponseHeader(injectedHeader, c.expectedVersion), c.testHostname)
    		} else {
    			sendTraffic(t, check.ResponseHeader(injectedHeader, c.expectedVersion))
    		}
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		endpointsChanges:      proxy.NewEndpointsChangeTracker(testHostname, nil, ipFamily, nil, nil),
    		excludeCIDRs:          excludeCIDRs,
    		iptables:              ipt,
    		ipvs:                  ipvs,
    		ipset:                 ipset,
    		conntrack:             conntrack.NewFake(),
    		strictARP:             false,
    		localDetector:         proxyutil.NewNoOpLocalDetector(),
    		hostname:              testHostname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.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);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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