Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 194 for unpipe (0.6 sec)

  1. guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml

        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. src/net/sockopt_bsd.go

    	"syscall"
    )
    
    func setDefaultSockopts(s, family, sotype int, ipv6only bool) error {
    	if runtime.GOOS == "dragonfly" && sotype != syscall.SOCK_RAW {
    		// On DragonFly BSD, we adjust the ephemeral port
    		// range because unlike other BSD systems its default
    		// port range doesn't conform to IANA recommendation
    		// as described in RFC 6056 and is pretty narrow.
    		switch family {
    		case syscall.AF_INET:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/cache2/FileOperator.kt

     * limitations under the License.
     */
    package okhttp3.internal.cache2
    
    import java.io.IOException
    import java.nio.channels.FileChannel
    import okio.Buffer
    
    /**
     * Read and write a target file. Unlike Okio's built-in `Okio.source(java.io.File file)` and `Okio.sink(java.io.File file)`
     * this class offers:
     *
     *  * **Read/write:** read and write using the same operator.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. module.xml

    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    		</unzip>
    	</target>
    
    	<target name="remove.jars" if="with.fess">
    		<delete>
    			<fileset dir="${modules.dir}">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

        /**
         * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.
         * <p>
         * Unlike the {@link #resolveModel(java.lang.String, java.lang.String, java.lang.String)} method, this method
         * supports version ranges and updates the given {@code parent} instance to match the returned {@code ModelSource}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. pkg/flag/flag.go

    	en := strings.ToUpper(replacer.Replace(name))
    	if v, f := os.LookupEnv(en); f {
    		_ = fs.Set(name, v)
    	}
    }
    
    // AdditionalEnv allows additional env vars to set the flag value as well.
    // Unlike BindEnv, this does not do any transformations.
    func AdditionalEnv(fs *pflag.FlagSet, flagName, envName string) {
    	if v, f := os.LookupEnv(envName); f {
    		_ = fs.Set(flagName, v)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

    public class EnvironmentUtils {
    
        private static Properties envVars;
    
        /**
         * Adds the environment variables in the form of properties whose keys are prefixed with {@code env.}, e.g. {@code
         * env.PATH}. Unlike native environment variables, properties are always case-sensitive. For the sake of
         * determinism, the environment variable names will be normalized to upper case on platforms with case-insensitive
         * variable lookup.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/options/agent.go

    		MetadataDiscovery:           enableWDSEnv,
    		SDSFactory:                  sds,
    	}
    	extractXDSHeadersFromEnv(o)
    	return o
    }
    
    // Simplified extraction of gRPC headers from environment.
    // Unlike ISTIO_META, where we need JSON and advanced features - this is just for small string headers.
    func extractXDSHeadersFromEnv(o *istioagent.AgentOptions) {
    	envs := os.Environ()
    	for _, e := range envs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_on_demand_op.h

    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    
    // An OpKernel that compiles an op to an XLA computation and runs it. Unlike
    // XlaLaunch this doesn't rely on any rewrites of the graphdef - it will run a
    // vanilla TensorFlow op as long as the bridge supports it.
    class XlaCompileOnDemandOp : public OpKernel {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner.go

    		cmd: exec.Command(cmd, "-aif", "-e", file),
    	}
    
    	var err error
    	if j.in, err = j.cmd.StdinPipe(); err != nil {
    		return nil, err
    	}
    
    	outPipe, err := j.cmd.StdoutPipe()
    	if err != nil {
    		return nil, err
    	}
    
    	j.out = bufio.NewReader(outPipe)
    	if err := j.cmd.Start(); err != nil {
    		return nil, err
    	}
    
    	a := &addr2Liner{
    		rw:   j,
    		base: base,
    	}
    
    	return a, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top