Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for 511 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          },
          "peerDependencies": {
            "eslint": ">=7.0.0"
          }
        },
        "node_modules/eslint-scope": {
          "version": "5.1.1",
          "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
          "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    			continue
    		}
    		n := makeServiceKey(svc)
    		// To avoid allocating 240.240.(i).255, if X % 255 is 0, increment X.
    		// For example, when X=510, the resulting IP would be 240.240.2.0 (invalid)
    		// So we bump X to 511, so that the resulting IP is 240.240.2.1
    		if x%255 == 0 {
    			x++
    		}
    		if v, ok := hnMap[n]; ok {
    			log.Debugf("Reuse IP for domain %s", n)
    			setAutoAllocatedIPs(svc, v)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated KeyToPath items = 2;
    
      // defaultMode is optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
      // YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
      // Defaults to 0644.
      // Directories within the path are not affected by this setting.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"defaultMode": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		for _, loc := range sample.Location {
    			nodes := locations[loc.ID]
    			for i, n := range nodes {
    				// The inline flag may be inaccurate if 'show' or 'hide' filter is
    				// used. See https://github.com/google/pprof/issues/511.
    				inline := i != len(nodes)-1
    				stack = append(stack, stk{&n.Info, inline})
    			}
    		}
    
    		if len(stack) == 0 {
    			continue
    		}
    
    		fmt.Fprintln(w, separator)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      repeated KeyToPath items = 2;
    
      // defaultMode is optional: mode bits used to set permissions on created files by default.
      // Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
      // YAML accepts both octal and decimal values, JSON requires decimal values for mode bits.
      // Defaults to 0644.
      // Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// defaultMode is Optional: mode bits used to set permissions on created files by default.
    	// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511.
    	// YAML accepts both octal and decimal values, JSON requires decimal values
    	// for mode bits. Defaults to 0644.
    	// Directories within the path are not affected by this setting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	ServerName string
    
    	// SupportedCurves lists the elliptic curves supported by the client.
    	// SupportedCurves is set only if the Supported Elliptic Curves
    	// Extension is being used (see RFC 4492, Section 5.1.1).
    	SupportedCurves []CurveID
    
    	// SupportedPoints lists the point formats supported by the client.
    	// SupportedPoints is set only if the Supported Point Formats Extension
    	// is being used (see RFC 4492, Section 5.1.2).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_PTHREAD_GETSPECIFIC             = 0x1FC // 508
    	SYS_PTHREAD_JOIN                    = 0x1FD // 509
    	SYS_PTHREAD_KEY_CREATE              = 0x1FE // 510
    	SYS_PTHREAD_MUTEXATTR_INIT          = 0x1FF // 511
    	SYS_PTHREAD_MUTEXATTR_DESTROY       = 0x200 // 512
    	SYS_PTHREAD_MUTEXATTR_SETKIND_NP    = 0x201 // 513
    	SYS_PTHREAD_MUTEXATTR_GETKIND_NP    = 0x202 // 514
    	SYS_PTHREAD_MUTEX_INIT              = 0x203 // 515
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top