Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for varDesc (0.2 sec)

  1. src/runtime/align_test.go

    	for i, v := range matches {
    		checked["field runtime."+v[1]+"."+v[2]] = true
    		fieldDesc[i] = v[1] + "." + v[2]
    	}
    	varDesc := map[int]string{}
    	r = regexp.MustCompile(`unsafe[.]Pointer[(]&(\w+)[)]`)
    	matches = r.FindAllStringSubmatch(string(x), -1)
    	for i, v := range matches {
    		checked["var "+v[1]] = true
    		varDesc[i] = v[1]
    	}
    
    	// Check all of our alignments. This is the actual core of the test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/lv/stopwords.txt

    kļuvām
    kļuvāt
    kļūstu
    kļūsti
    kļūst
    kļūstam
    kļūstat
    kļūšu
    kļūsi
    kļūs
    kļūsim
    kļūsiet
    # verbs
    varēt
    varēju
    varējām
    varēšu
    varēsim
    var
    varēji
    varējāt
    varēsi
    varēsiet
    varat
    varēja
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/SloppyTearDown.java

    /**
     * Simple utility for when you want to create a {@link TearDown} that may throw an exception but
     * should not fail a test when it does. (The behavior of a {@code TearDown} that throws an exception
     * varies; see its documentation for details.) Use it just like a {@code TearDown}, except override
     * {@link #sloppyTearDown()} instead.
     *
     * @author Luiz-Otavio Zorzella
     * @since 10.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 19:22:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/SloppyTearDown.java

    /**
     * Simple utility for when you want to create a {@link TearDown} that may throw an exception but
     * should not fail a test when it does. (The behavior of a {@code TearDown} that throws an exception
     * varies; see its documentation for details.) Use it just like a {@code TearDown}, except override
     * {@link #sloppyTearDown()} instead.
     *
     * @author Luiz-Otavio Zorzella
     * @since 10.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 19:22:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/internal/osinfo/os_js.go

    //go:build js
    
    package osinfo
    
    import (
    	"fmt"
    	"syscall/js"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	// Version detection on Wasm varies depending on the underlying runtime
    	// (browser, node, etc), nor is there a standard via something like
    	// WASI (see https://go.dev/issue/31105). For now, attempt a few simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. architecture/runtimes.md

    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    - Some base services that are available to code hosted by the runtime. This varies by runtime.
    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/pleg.go

    // PodLifecycleEvent is an event that reflects the change of the pod state.
    type PodLifecycleEvent struct {
    	// The pod ID.
    	ID types.UID
    	// The type of the event.
    	Type PodLifeCycleEventType
    	// The accompanied data which varies based on the event type.
    	//   - ContainerStarted/ContainerStopped: the container name (string).
    	//   - All other event types: unused.
    	Data interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         * That is, the “nearer” declarations are earlier in the list.
         */
        Collection<Method> getGetters();
    
        /**
         * Similar to {@link #getGetters()}, but varies based on the param type instead of return type.
         *
         * Has identical ordering semantics.
         */
        Collection<Method> getSetters();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/hg.go

    		// Mercurial has a CGI server implementation (called hgweb). In theory we
    		// could use that — however, assuming that hgweb is even installed, the
    		// configuration for hgweb varies by Python version (2 vs 3), and we would
    		// rather not go rooting around trying to find the right Python version to
    		// run.
    		//
    		// Instead, we'll take a somewhat more roundabout approach: we assume that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/runtime/debug/stack.go

    		fd = uintptr(fd2)
    	}
    	if prev := runtime_setCrashFD(fd); prev != ^uintptr(0) {
    		// We use NewFile+Close because it is portable
    		// unlike syscall.Close, whose parameter type varies.
    		os.NewFile(prev, "").Close() // ignore error
    	}
    	return nil
    }
    
    //go:linkname runtime_setCrashFD runtime.setCrashFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top