Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,210 for examine (0.14 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if len(line.Comments.Before) == 1 && len(line.Comments.Before[0].Token) == 0 {
    				line.Comments.Before = line.Comments.Before[:0]
    			}
    			if len(line.Token) >= 2 { // example.com v1.2.3
    				line.Token[1] = v
    			}
    		} else {
    			if len(line.Token) >= 3 { // require example.com v1.2.3
    				line.Token[2] = v
    			}
    		}
    	}
    }
    
    // setIndirect sets line to have (or not have) a "// indirect" comment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	})
    	if err != nil {
    		klog.ErrorS(err, "ListContainers error")
    		return nil, err
    	}
    
    	statuses := []*kubecontainer.Status{}
    	// TODO: optimization: set maximum number of containers per container name to examine.
    	for _, c := range containers {
    		resp, err := m.runtimeService.ContainerStatus(ctx, c.Id, false)
    		// Between List (ListContainers) and check (ContainerStatus) another thread might remove a container, and that is normal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // Note that registries may mutate the input object (e.g. in the strategy
    // hooks).  Tests which call this might want to call DeepCopy if they expect to
    // be able to examine the input and output objects for differences.
    func (e *Store) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    };
    
    LogicalResult EliminateResourceLoops(OpBuilder& builder,
                                         SymbolTable& symbol_table,
                                         func::FuncOp func) {
      // Examine all StatefulPartitionedCall ops that have resources as return
      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/ru/docs/tutorial/schema-extra-example.md

    om/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md#fixed-fields-20" class="external-link" target="_blank">`example`</a> для модифицированной версии **JSON Schema**, которую он использует чтобы достичь той же цели (однако это именно поле `example`, а не `examples`), и именно это используется API в UI документации (с интеграцией Swagger UI).
    
    Итак, хотя поле `example` не является частью JSON-схемы, оно является частью настраиваемой версии JSON-схемы в OpenAPI, и именно это поле будет...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.9.0.txt

    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    // Deprecated: in example.com/deprecated/a@v1.9.0
    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    // Deprecated: in example.com/deprecated/a@v1.9.0
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 346 bytes
    - Viewed (0)
Back to top