Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for LINK (0.22 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 30 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         * @throws NumberFormatException When the property is not integer.
         */
        Integer getSchedulerMonitorIntervalAsInteger();
    
        /**
         * Get the value for the key 'online.help.base.link'. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Add link to german article: REST-API Programmieren mittels Python und dem FastAPI Modul. PR [#4624](https://github.com/tiangolo/fastapi/pull/4624) by [@fschuermeyer](https://github.com/fschuermeyer).
    * 📝 Add external link: PyCharm Guide to FastAPI. PR [#4512](https://github.com/tiangolo/fastapi/pull/4512) by [@mukulmantosh](https://github.com/mukulmantosh).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    					// Unlink from the current list.
    					for x := s.pp.Text; x != nil; x = x.Link {
    						if x.Link == nop {
    							x.Link = nop.Link
    							break
    						}
    					}
    					// Splice in right before p.
    					for x := s.pp.Text; x != nil; x = x.Link {
    						if x.Link == p {
    							nop.Link = p
    							x.Link = nop
    							break
    						}
    					}
    				}
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

      See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files
      
      Please use the following format for linking documentation:
      - [KEP]: <link>
      - [Usage]: <link>
      - [Other doc]: <link>
      --> ([#119495](https://github.com/kubernetes/kubernetes/pull/119495), [@bzsuni](https://github.com/bzsuni)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

    // EndpointAddress is a tuple that describes single IP address.
    // +structType=atomic
    message EndpointAddress {
      // The IP of this endpoint.
      // May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10),
      // or link-local multicast (224.0.0.0/24 or ff02::/16).
      optional string ip = 1;
    
      // The Hostname of this endpoint
      // +optional
      optional string hostname = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    }
    
    // EndpointAddress is a tuple that describes single IP address.
    type EndpointAddress struct {
    	// The IP of this endpoint.
    	// May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10),
    	// or link-local multicast (224.0.0.0/24 or ff02::/16).
    	IP string
    	// Optional: Hostname of this endpoint
    	// Meant to be used by DNS servers etc.
    	// +optional
    	Hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_EndpointAddress = map[string]string{
    	"":          "EndpointAddress is a tuple that describes single IP address.",
    	"ip":        "The IP of this endpoint. May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10), or link-local multicast (224.0.0.0/24 or ff02::/16).",
    	"hostname":  "The Hostname of this endpoint",
    	"nodeName":  "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	}
    	if ip.IsLinkLocalUnicast() {
    		allErrs = append(allErrs, field.Invalid(fldPath, ipAddress, "may not be in the link-local range (169.254.0.0/16, fe80::/10)"))
    	}
    	if ip.IsLinkLocalMulticast() {
    		allErrs = append(allErrs, field.Invalid(fldPath, ipAddress, "may not be in the link-local multicast range (224.0.0.0/24, ff02::/10)"))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    		"date",
    		"etag",
    		"expect",
    		"expires",
    		"from",
    		"host",
    		"if-match",
    		"if-modified-since",
    		"if-none-match",
    		"if-unmodified-since",
    		"last-modified",
    		"link",
    		"location",
    		"max-forwards",
    		"origin",
    		"proxy-authenticate",
    		"proxy-authorization",
    		"range",
    		"referer",
    		"refresh",
    		"retry-after",
    		"server",
    		"set-cookie",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

    // EndpointAddress is a tuple that describes single IP address.
    // +structType=atomic
    message EndpointAddress {
      // The IP of this endpoint.
      // May not be loopback (127.0.0.0/8 or ::1), link-local (169.254.0.0/16 or fe80::/10),
      // or link-local multicast (224.0.0.0/24 or ff02::/16).
      optional string ip = 1;
    
      // The Hostname of this endpoint
      // +optional
      optional string hostname = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top