Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for xform (0.25 sec)

  1. src/net/conf.go

    	} else {
    		// Neither resolver was explicitly requested
    		// and we have no preference.
    
    		if bytealg.IndexByteString(hostname, '\\') != -1 || bytealg.IndexByteString(hostname, '%') != -1 {
    			// Don't deal with special form hostnames
    			// with backslashes or '%'.
    			return hostLookupCgo, nil
    		}
    
    		// If something is unrecognized, use cgo.
    		fallbackOrder = hostLookupCgo
    		canUseCgo = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm.go

    		0xfffffffffffffffe, 0x00000004fffffffd}
    
    	switch {
    	// Point at infinity.
    	case len(b) == 1 && b[0] == 0:
    		return p.Set(NewP256Point()), nil
    
    	// Uncompressed form.
    	case len(b) == p256UncompressedLength && b[0] == 4:
    		var r P256Point
    		p256BigToLittle(&r.x, (*[32]byte)(b[1:33]))
    		p256BigToLittle(&r.y, (*[32]byte)(b[33:65]))
    		if p256LessThanP(&r.x) == 0 || p256LessThanP(&r.y) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // When value is `Indexed`, .spec.completions must be specified and
      // `.spec.parallelism` must be less than or equal to 10^5.
      // In addition, The Pod name takes the form
      // `$(job-name)-$(index)-$(random-string)`,
      // the Pod hostname takes the form `$(job-name)-$(index)`.
      //
      // More completion modes can be added in the future.
      // If the Job controller observes a mode that it doesn't recognize, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    }
    func (e Edge) String() string {
    	return fmt.Sprintf("{%v,%d}", e.b, e.i)
    }
    
    // BlockKind is the kind of SSA block.
    type BlockKind uint8
    
    // short form print
    func (b *Block) String() string {
    	return fmt.Sprintf("b%d", b.ID)
    }
    
    // long form print
    func (b *Block) LongString() string {
    	s := b.Kind.String()
    	if b.Aux != nil {
    		s += fmt.Sprintf(" {%s}", b.Aux)
    	}
    	if t := b.AuxIntString(); t != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. README.md

    * <a href="https://github.com/Kludex/python-multipart" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`.
    
    Used by FastAPI / Starlette:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

    import org.gradle.internal.reflect.Instantiator;
    
    /**
     * Default implementation of {@link ResolutionOutputsInternal}. This class is in charge of
     * converting internal results in the form of {@link ResolverResults} into public facing types like:
     *
     * <ul>
     *     <li>{@link org.gradle.api.file.FileCollection}</li>
     *     <li>{@link org.gradle.api.artifacts.ArtifactCollection}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/plugins/dsl/groovy", files="build.gradle[tags=use-plugin]"]
    ====
    
    All other binary plugins must use the fully qualified form of the plugin id (e.g., `com.github.foo.bar`).
    
    To apply a community plugin from http://plugins.gradle.org[Gradle plugin portal], the fully qualified *plugin id*, a globally unique identifier, must be used:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    		return "/" // Path is empty or malformed.
    	}
    
    	i := strings.LastIndex(path, "/") // Path starts with "/", so i != -1.
    	if i == 0 {
    		return "/" // Path has the form "/abc".
    	}
    	return path[:i] // Path is either of form "/abc/xyz" or "/abc/xyz/".
    }
    
    // newEntry creates an entry from an http.Cookie c. now is the current time and
    // is compared to c.Expires to determine deletion of c. defPath and host are the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    	// When value is `Indexed`, .spec.completions must be specified and
    	// `.spec.parallelism` must be less than or equal to 10^5.
    	// In addition, The Pod name takes the form
    	// `$(job-name)-$(index)-$(random-string)`,
    	// the Pod hostname takes the form `$(job-name)-$(index)`.
    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. cmd/common-main.go

    		}
    	}
    
    	return envKV{
    		Key:   key,
    		Value: val,
    	}, nil
    }
    
    // Similar to os.Environ returns a copy of strings representing
    // the environment values from a file, in the form "key, value".
    // in a structured form.
    func minioEnvironFromFile(envConfigFile string) ([]envKV, error) {
    	f, err := Open(envConfigFile)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	var ekvs []envKV
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top