Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for augmented (0.25 sec)

  1. src/cmd/go/internal/vcweb/script.go

    	"net/http"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"time"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/zip"
    )
    
    // newScriptEngine returns a script engine augmented with commands for
    // reproducing version-control repositories by replaying commits.
    func newScriptEngine() *script.Engine {
    	conds := script.DefaultConds()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

    import org.gradle.kotlin.dsl.support.delegates.NamedDomainObjectContainerDelegate
    
    import kotlin.reflect.KClass
    import kotlin.reflect.KProperty
    
    
    /**
     * Allows the container to be configured via an augmented DSL.
     *
     * @param configuration The expression to configure this container with
     * @return The container.
     */
    @Suppress("nothing_to_inline")
    inline operator fun <T : Any, C : NamedDomainObjectContainer<T>> C.invoke(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/net/lookup.go

    // names and numbers for platforms that don't have a complete list of
    // protocol numbers.
    //
    // See https://www.iana.org/assignments/protocol-numbers
    //
    // On Unix, this map is augmented by readProtocols via lookupProtocol.
    var protocols = map[string]int{
    	"icmp":      1,
    	"igmp":      2,
    	"tcp":       6,
    	"udp":       17,
    	"ipv6-icmp": 58,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		}
    	}
    
    	return status
    }
    
    // addNominatedPods adds pods with equal or greater priority which are nominated
    // to run on the node. It returns 1) whether any pod was added, 2) augmented cycleState,
    // 3) augmented nodeInfo.
    func addNominatedPods(ctx context.Context, fh framework.Handle, pod *v1.Pod, state *framework.CycleState, nodeInfo *framework.NodeInfo) (bool, *framework.CycleState, *framework.NodeInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/match.go

    // in order of preference. Extensions are ignored for matching.
    //
    // The index returned by the Match method corresponds to the index of the
    // matched tag in t, but is augmented with the Unicode extension ('u')of the
    // corresponding preferred tag. This allows user locale options to be passed
    // transparently.
    func NewMatcher(t []Tag, options ...MatchOption) Matcher {
    	return newMatcher(t, options)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	// golang.org/issue/23701.
    	// b_test imports b with augmented method from export_test.go.
    	// b_test also imports a, which imports b.
    	// Must not accidentally see un-augmented b propagate through a to b_test.
    	tg.tempFile("src/a/a.go", `package a
    		import "b"
    		type Type struct{}
    		func (*Type) M() b.T {return 0}
    	`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    func (rr *replacementRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error {
    	return fmt.Errorf("replacement repo")
    }
    
    // Versions returns the versions from rr.repo augmented with any matching
    // replacement versions.
    func (rr *replacementRepo) Versions(ctx context.Context, prefix string) (*modfetch.Versions, error) {
    	repoVersions, err := rr.repo.Versions(ctx, prefix)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. src/regexp/testdata/testregex.c

    #endif
    
    #ifndef REG_EXEC_DEFAULT
    #define REG_EXEC_DEFAULT	0
    #endif
    
    static const char* unsupported[] =
    {
    	"BASIC",
    #ifndef REG_EXTENDED
    	"EXTENDED",
    #endif
    #ifndef REG_AUGMENTED
    	"AUGMENTED",
    #endif
    #ifndef REG_SHELL
    	"SHELL",
    #endif
    
    #ifndef REG_CLASS_ESCAPE
    	"CLASS_ESCAPE",
    #endif
    #ifndef REG_COMMENT
    	"COMMENT",
    #endif
    #ifndef REG_DELIMITED
    	"DELIMITED",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // as object trackers for manipulating the objects available to the system
    //
    // ParamTracker only knows the gvk `paramGVK`. If in the future we need to
    // support multiple types of params this function needs to be augmented
    //
    // PolicyTracker expects FakePolicyDefinition and FakePolicyBinding types
    // !TODO: refactor this test/framework to remove startInformers argument and
    // clean up the return args, and in general make it more accessible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     * argument is used.
     *
     * <p>
     * <table border="1" cellpadding="3" cellspacing="0" width="100%" summary="Usage examples">
     * <tr bgcolor="#ccccff">
     * <td colspan="3">
     * <b>Examples Of SMB URLs When Augmented With A Second Constructor Parameter</b></td>
     * <tr>
     * <td width="20%">
     * <b>First Parameter</b></td>
     * <td><b>Second Parameter</b></td>
     * <td><b>Result</b></td>
     * </tr>
     *
     * <tr>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top