Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for 4400 (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_MSGSND                       = 4400
    	SYS_MSGRCV                       = 4401
    	SYS_MSGCTL                       = 4402
    	SYS_CLOCK_GETTIME64              = 4403
    	SYS_CLOCK_SETTIME64              = 4404
    	SYS_CLOCK_ADJTIME64              = 4405
    	SYS_CLOCK_GETRES_TIME64          = 4406
    	SYS_CLOCK_NANOSLEEP_TIME64       = 4407
    	SYS_TIMER_GETTIME64              = 4408
    	SYS_TIMER_SETTIME64              = 4409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    	SYS_MSGSND                       = 4400
    	SYS_MSGRCV                       = 4401
    	SYS_MSGCTL                       = 4402
    	SYS_CLOCK_GETTIME64              = 4403
    	SYS_CLOCK_SETTIME64              = 4404
    	SYS_CLOCK_ADJTIME64              = 4405
    	SYS_CLOCK_GETRES_TIME64          = 4406
    	SYS_CLOCK_NANOSLEEP_TIME64       = 4407
    	SYS_TIMER_GETTIME64              = 4408
    	SYS_TIMER_SETTIME64              = 4409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/net/textproto/reader_test.go

    	},
    
    	{"230 Anonymous access granted, restrictions apply\n",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply",
    	},
    
    	{"400-A\n400-B\n400 C",
    		4,
    		400,
    		"A\nB\nC",
    	},
    
    	{"400-A\r\n400-B\r\n400 C\r\n",
    		4,
    		400,
    		"A\nB\nC",
    	},
    }
    
    // See https://www.ietf.org/rfc/rfc959.txt page 36.
    func TestRFC959Lines(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/extensionprovider_test.go

    				Service: "name/space/opencensus-agent.com",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus service with port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_OpenCensusAgentTracingProvider{
    				Service: "opencensus-agent.com:4000",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus missing port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    				},
    				SizeBytes: int64(900 * mb),
    			},
    		},
    	}
    
    	node400030 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/4000:latest",
    				},
    				SizeBytes: int64(4000 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/30:latest",
    				},
    				SizeBytes: int64(30 * mb),
    			},
    		},
    	}
    
    	node203040 := v1.NodeStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        }
    
        public void test_abbreviateLongText() {
            assertEquals("", systemHelper.abbreviateLongText(""));
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4000).collect(Collectors.joining())).length());
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4001).collect(Collectors.joining())).length());
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    )
    
    func TestFilterTerminatedContainerInfoAndAssembleByPodCgroupKey(t *testing.T) {
    	const (
    		seedPastPod0Infra      = 1000
    		seedPastPod0Container0 = 2000
    		seedPod0Infra          = 3000
    		seedPod0Container0     = 4000
    	)
    	const (
    		namespace = "test"
    		pName0    = "pod0"
    		cName00   = "c0"
    		pName1    = "pod1"
    		cName11   = "c1"
    		pName2    = "pod2"
    		cName22   = "c2"
    		cName222  = "c222"
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer_test.go

    			payloads: []map[string]FileProjection{
    				{
    					"foo": {Mode: 0644, Data: []byte("foo")},
    					"bar": {Mode: 0644, Data: []byte("bar")},
    				},
    				{
    					"foo": {Mode: 0400, Data: []byte("foo2")},
    					"bar": {Mode: 0400, Data: []byte("bar2")},
    				},
    				{
    					"foo": {Mode: 0600, Data: []byte("foo3")},
    					"bar": {Mode: 0600, Data: []byte("bar3")},
    				},
    			},
    		},
    		{
    			name: "update 2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    	files := []struct {
    		name string
    		data []byte
    	}{
    		{data.CA, caCert},
    		{data.Cert, clientCert},
    		{data.Key, clientKey},
    	}
    	for _, file := range files {
    		if err := ioutil.WriteFile(file.name, file.data, 0400); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	tests := []struct {
    		msg        string
    		configTmpl string
    		wantErr    bool
    	}{
    		{
    			msg: "a single cluster and single user",
    			configTmpl: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static springBoot = "3.2.4"
    
            // https://developer.android.com/studio/releases/build-tools
            static androidTools = "34.0.0"
    
            // https://developer.android.com/studio/releases/gradle-plugin
            // Update by running `./gradlew updateAgpVersions`
            static androidGradle = Versions.of(*AGP_VERSIONS.latestsPlusNightly)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top