Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 193 for EG (0.02 sec)

  1. src/go/doc/testdata/example.go

    	ok = true
    
    	var eg InternalExample
    
    	stdout, stderr := os.Stdout, os.Stderr
    	defer func() {
    		os.Stdout, os.Stderr = stdout, stderr
    		if e := recover(); e != nil {
    			fmt.Printf("--- FAIL: %s\npanic: %v\n", eg.Name, e)
    			os.Exit(1)
    		}
    	}()
    
    	for _, eg = range examples {
    		if *chatty {
    			fmt.Printf("=== RUN: %s\n", eg.Name)
    		}
    
    		// capture stdout and stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

    public enum IncludeType {
        /**
         * A system include path, eg {@code <hello.h>}
         */
        SYSTEM,
        /**
         * A quoted include path eg {@code "hello.h"}
         */
        QUOTED,
        /**
         * An identifier that should be macro expanded. These appear in the body of a directive eg {@code #define HEADER ABC}.
         */
        MACRO,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/testing/example.go

    	ok = true
    
    	m := newMatcher(matchString, *match, "-test.run", *skip)
    
    	var eg InternalExample
    	for _, eg = range examples {
    		_, matched, _ := m.fullName(nil, eg.Name)
    		if !matched {
    			continue
    		}
    		ran = true
    		if !runExample(eg) {
    			ok = false
    		}
    	}
    
    	return ran, ok
    }
    
    func sortLines(output string) string {
    	lines := strings.Split(output, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/testing/run_example_wasm.go

    // example.go when js/wasm gets an os.Pipe implementation.
    func runExample(eg InternalExample) (ok bool) {
    	if chatty.on {
    		fmt.Printf("%s=== RUN   %s\n", chatty.prefix(), eg.Name)
    	}
    
    	// Capture stdout to temporary file. We're not using
    	// os.Pipe because it is not supported on js/wasm.
    	stdout := os.Stdout
    	f := createTempFile(eg.Name)
    	os.Stdout = f
    	finished := false
    	start := time.Now()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/testing/run_example.go

    // and no longer needs this separation.
    
    package testing
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    )
    
    func runExample(eg InternalExample) (ok bool) {
    	if chatty.on {
    		fmt.Printf("%s=== RUN   %s\n", chatty.prefix(), eg.Name)
    	}
    
    	// Capture stdout.
    	stdout := os.Stdout
    	r, w, err := os.Pipe()
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	os.Stdout = w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    	// eg: pandas.awesome.bears.example is a custom resource with 'group': awesome.bears.example, 'resource': pandas.
    	// Use '*.*' to encrypt all resources and '*.<group>' to encrypt all resources in a specific group.
    	// eg: '*.awesome.bears.example' will encrypt all resources in the group 'awesome.bears.example'.
    	// eg: '*.' will encrypt all resources in the core group (such as pods, configmaps, etc).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/context.go

    // Four sets are exposed:
    // * Internal addresses (eg istio-ingressgateway.istio-system.svc.cluster.local:80).
    // * Internal IP addresses (eg 1.2.3.4). This comes from ClusterIP.
    // * External addresses (eg 1.2.3.4), this comes from LoadBalancer services. There may be multiple in some cases (especially multi cluster).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	// eg: pandas.awesome.bears.example is a custom resource with 'group': awesome.bears.example, 'resource': pandas.
    	// Use '*.*' to encrypt all resources and '*.<group>' to encrypt all resources in a specific group.
    	// eg: '*.awesome.bears.example' will encrypt all resources in the group 'awesome.bears.example'.
    	// eg: '*.' will encrypt all resources in the core group (such as pods, configmaps, etc).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. pkg/ledger/ledger_test.go

    	var eg errgroup.Group
    	ids := make([]string, 0, configSize)
    	for i := 0; i < configSize; i++ {
    		ids = append(ids, addConfig(l, b))
    	}
    	b.ResetTimer()
    	for n := 0; n < b.N; n++ {
    		eg.Go(func() error {
    			_, err := l.Put(ids[rand.Int()%configSize], strconv.Itoa(rand.Int()))
    			_ = l.RootHash()
    			return err
    		})
    	}
    	if err := eg.Wait(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 16:12:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/README.md

    Its role is to:
    
    1. implement the C API functions declared in `saved_model/public`
    
    2. define the C API types declared in `saved_model/public`
    
    The files fulfilling 1. are named `*.cc` (eg: `concrete_function.cc`), while
    the files fulfilling 2. are `*type.h` (eg: `concrete_function_type.h`).
    
    The headers exposing the internal implementation of the opaque C types are only
    visible to other implementors of the C API. This is similar to how other
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 20 17:00:01 UTC 2020
    - 2K bytes
    - Viewed (0)
Back to top