Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 109 of 109 for human (0.12 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

            runStart = -1;
          }
        }
        if (bestRunLength >= 2) {
          Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1);
        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

            runStart = -1;
          }
        }
        if (bestRunLength >= 2) {
          Arrays.fill(hextets, bestRunStart, bestRunStart + bestRunLength, -1);
        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"fieldRef": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"",
    	"warning":  "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.",
    }
    
    func (ExpressionWarning) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    	if ctx == nil {
    		panic("nil Context")
    	}
    	cmd := Command(name, arg...)
    	cmd.ctx = ctx
    	cmd.Cancel = func() error {
    		return cmd.Process.Kill()
    	}
    	return cmd
    }
    
    // String returns a human-readable description of c.
    // It is intended only for debugging.
    // In particular, it is not suitable for use as input to a shell.
    // The output of String may vary across Go releases.
    func (c *Cmd) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"fieldRef": "The path to the field that refers the expression. For example, the reference to the expression of the first item of validations is \"spec.validations[0].expression\"",
    	"warning":  "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.",
    }
    
    func (ExpressionWarning) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/generate/generate.go

    double-quoted strings passed to the generator as individual
    arguments when it is run.
    
    Quoted strings use Go syntax and are evaluated before execution; a
    quoted string appears as a single argument to the generator.
    
    To convey to humans and machine tools that code is generated,
    generated source should have a line that matches the following
    regular expression (in Go syntax):
    
    	^// Code generated .* DO NOT EDIT\.$
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    		// (version 7.54) and IE (version 11) do not reject a
    		//     Set-Cookie: a=1; domain=.127.0.0.1
    		// This leading dot is optional and serves only as hint for
    		// humans to indicate that a cookie with "domain=.bbc.co.uk"
    		// would be sent to every subdomain of bbc.co.uk.
    		// It just doesn't make sense on IP addresses.
    		// The other processing and validation steps in RFC 6265 just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. docs/az/docs/index.md

    * <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - `SchemaGenerator` dəstəyi üçün tələb olunur (Çox güman ki, FastAPI istifadə edərkən buna ehtiyacınız olmayacaq).
    * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - `UJSONResponse` istifadə etmək istəyirsinizsə, tələb olunur.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy.go

    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (podStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	// skip warnings on pod update, since humans don't typically interact directly with pods,
    	// and we don't want to pay the evaluation cost on what might be a high-frequency update path
    	return nil
    }
    
    // AllowUnconditionalUpdate allows pods to be overwritten
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top