Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,546 for examine (0.27 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/listers/cr/v1/example.go

    	return &exampleLister{listers.New[*v1.Example](indexer, v1.Resource("example"))}
    }
    
    // Examples returns an object that can list and get Examples.
    func (s *exampleLister) Examples(namespace string) ExampleNamespaceLister {
    	return exampleNamespaceLister{listers.NewNamespaced[*v1.Example](s.ResourceIndexer, namespace)}
    }
    
    // ExampleNamespaceLister helps list and get Examples.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	Examples(namespace string) ExampleInterface
    }
    
    // ExampleInterface has methods to work with Example resources.
    type ExampleInterface interface {
    	Create(ctx context.Context, example *v1.Example, opts metav1.CreateOptions) (*v1.Example, error)
    	Update(ctx context.Context, example *v1.Example, opts metav1.UpdateOptions) (*v1.Example, error)
    	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/go/doc/example.go

    // license that can be found in the LICENSE file.
    
    // Extract example functions from file ASTs.
    
    package doc
    
    import (
    	"cmp"
    	"go/ast"
    	"go/token"
    	"internal/lazyregexp"
    	"path"
    	"slices"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // An Example represents an example function found in a test source file.
    type Example struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1/example.go

    }
    
    // Example constructs an declarative configuration of the Example type for use with
    // apply.
    func Example(name, namespace string) *ExampleApplyConfiguration {
    	b := &ExampleApplyConfiguration{}
    	b.WithName(name)
    	b.WithNamespace(namespace)
    	b.WithKind("Example")
    	b.WithAPIVersion("cr.example.apiextensions.k8s.io/v1")
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/cr/v1/example.go

    	factory          internalinterfaces.SharedInformerFactory
    	tweakListOptions internalinterfaces.TweakListOptionsFunc
    	namespace        string
    }
    
    // NewExampleInformer constructs a new informer for Example type.
    // Always prefer using an informer factory to get a shared informer instead of getting an independent
    // one. This reduces memory footprint and number of connections to the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/example.go

    			buf := new(bytes.Buffer)
    			_, err := io.Copy(buf, r)
    			if err != nil {
    				fmt.Fprintf(stderr, "testing: copying pipe: %v\n", err)
    				os.Exit(1)
    			}
    			outC <- buf.String()
    		}()
    
    		// run example
    		t0 := time.Now()
    		eg.F()
    		dt := time.Since(t0)
    
    		// close pipe, restore stdout/stderr, get output
    		w.Close()
    		os.Stdout, os.Stderr = stdout, stderr
    		out := <-outC
    
    		// report any errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. tests/testdata/config/se-example.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: unix-domain-socket-example
      namespace: seexamples
    spec:
      hosts:
      - "example.unix.local"
      location: MESH_EXTERNAL
      ports:
      - number: 8001
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: unix:///var/run/example/socket
    
    ---
    
    # For HTTP based services, it is possible to create a VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  8. src/testing/example.go

    }
    
    func sortLines(output string) string {
    	lines := strings.Split(output, "\n")
    	slices.Sort(lines)
    	return strings.Join(lines, "\n")
    }
    
    // processRunResult computes a summary and status of the result of running an example test.
    // stdout is the captured output from stdout of the test.
    // recovered is the result of invoking recover after running the test, in case it panicked.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. docs/screenshots/Example-1.png

    Example-1.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 02:22:34 UTC 2017
    - 97.2K bytes
    - Viewed (0)
  10. docs/screenshots/Example-1.jpg

    Example-1.jpg...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 29 16:10:47 UTC 2017
    - 88.5K bytes
    - Viewed (0)
Back to top