Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for STREAM (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import java.util.Collection;
    import java.util.HashSet;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    
    import static java.util.Optional.ofNullable;
    
    /**
     * Generates a subclass of the target class to mix-in some DSL behaviour.
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            Plugin plugin = plugins.stream()
                    .filter(p -> p.getArtifactId().equals(artifactId))
                    .findFirst()
                    .orElse(null);
            assertNotNull(plugin, "Unable to find plugin with artifactId: " + artifactId);
            List<PluginExecution> pluginExecutions = plugin.getExecutions();
            PluginExecution pluginExecution = pluginExecutions.stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    		signature = hex.EncodeToString(sumHMAC(signingKey, []byte(stringToSign)))
    
    		stream = append(stream, []byte(fmt.Sprintf("%x", n)+";chunk-signature="+signature+"\r\n")...)
    		stream = append(stream, buffer[:n]...)
    		stream = append(stream, []byte("\r\n")...)
    
    		if n <= 0 {
    			break
    		}
    
    	}
    	req.Body = io.NopCloser(bytes.NewReader(stream))
    	return req, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    }
    
    // when a request panics, http2 resets the stream with an INTERNAL_ERROR message
    func expectResetStreamError(t *testing.T, err error) {
    	if err == nil {
    		t.Fatalf("expected the server to send an error, but got nil")
    	}
    	if isStreamReset(err) {
    		return
    	}
    	t.Fatalf("expected a stream reset error, but got %#+v=%s", err, err.Error())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

        # 'stream' from the record.
        message ${record['log']}
        # If 'severity' is not set, assume stderr is ERROR and stdout is INFO.
        severity ${record['severity'] || if record['stream'] == 'stderr' then 'ERROR' else 'INFO' end}
      </record>
      tag ${if record['stream'] == 'stderr' then 'raw.stderr' else 'raw.stdout' end}
      remove_keys stream,log
    </match>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	{94, "EBADMSG", "bad message"},
    	{95, "EMULTIHOP", "EMULTIHOP (Reserved)"},
    	{96, "ENODATA", "no message available on STREAM"},
    	{97, "ENOLINK", "ENOLINK (Reserved)"},
    	{98, "ENOSR", "no STREAM resources"},
    	{99, "ENOSTR", "not a STREAM"},
    	{100, "EPROTO", "protocol error"},
    	{101, "ETIME", "STREAM ioctl timeout"},
    	{102, "EOPNOTSUPP", "operation not supported on socket"},
    	{103, "ENOPOLICY", "policy not found"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
    
    import org.apache.maven.api.model.Activation;
    import org.apache.maven.api.model.ActivationFile;
    import org.apache.maven.api.model.ActivationOS;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go

    	{94, "EBADMSG", "bad message"},
    	{95, "EMULTIHOP", "EMULTIHOP (Reserved)"},
    	{96, "ENODATA", "no message available on STREAM"},
    	{97, "ENOLINK", "ENOLINK (Reserved)"},
    	{98, "ENOSR", "no STREAM resources"},
    	{99, "ENOSTR", "not a STREAM"},
    	{100, "EPROTO", "protocol error"},
    	{101, "ETIME", "STREAM ioctl timeout"},
    	{102, "EOPNOTSUPP", "operation not supported on socket"},
    	{103, "ENOPOLICY", "policy not found"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.*;
    import java.util.Map.Entry;
    import java.util.function.Consumer;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Stream;
    
    import com.google.inject.AbstractModule;
    import org.apache.commons.cli.CommandLine;
    import org.apache.commons.cli.Option;
    import org.apache.commons.cli.ParseException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/syscall/zerrors_netbsd_arm64.go

    	85: "illegal byte sequence",
    	86: "not supported",
    	87: "operation Canceled",
    	88: "bad or Corrupt message",
    	89: "no message available",
    	90: "no STREAM resources",
    	91: "not a STREAM",
    	92: "STREAM ioctl timeout",
    	93: "attribute not found",
    	94: "multihop attempted",
    	95: "link has been severed",
    	96: "protocol error",
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
Back to top