Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 870 for simplify (0.16 sec)

  1. src/go/ast/commentmap.go

    			}
    			// Try to associate a comment first with a node group
    			// (i.e., a node of "importance" such as a declaration);
    			// if that fails, try to associate it with the most recent
    			// node.
    			// TODO(gri) try to simplify the logic below
    			var assoc Node
    			switch {
    			case pg != nil &&
    				(pgend.Line == r.pos.Line ||
    					pgend.Line+1 == r.pos.Line && r.end.Line+1 < qpos.Line):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// +listType=set
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,6,rep,name=shortNames"`
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    	// Clients may use this to simplify acting on multiple resource types at once.
    	// +listType=set
    	Categories []string `json:"categories,omitempty" protobuf:"bytes,7,rep,name=categories"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. test/typeparam/listimp2.dir/a.go

    package a
    
    import (
    	"fmt"
    )
    
    // Element is an element of a linked list.
    type Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                    @Override
                    public void visitCode() {
                        /*
                         * // The boolean is passed to this call rather than being checked here at the call site in order to simplify code generation.
                         * InstrumentedGroovyMetaClassHelper.addInvocationHooksInClosureDispatchObject(newDelegate, isEffectivelyInstrumented, interceptorsRequest);
                         * super.setDelegate(newDelegate);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function.cc

    // does various checks while doing so. `input_nodes` will contain the same
    // information as input_tensors just in a different structure to make
    // following processing easier. TODO(iga): Simplify this nested structure.
    Status ProcessInputs(
        const TF_Graph* fn_body, const char* fn_name, int ninputs,
        const TF_Output* inputs, std::vector<OutputTensor>* input_tensors,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    # Build the etcd image
    #
    # Usage:
    # 	[BUNDLED_ETCD_VERSIONS=3.4.18 3.5.14] [REGISTRY=registry.k8s.io] [ARCH=amd64] [BASEIMAGE=busybox] make (build|push)
    #
    # The image contains different etcd versions to simplify
    # upgrades. Thus be careful when removing any versions from here.
    #
    # NOTE: The etcd upgrade rules are that you can upgrade only 1 minor
    # version at a time, and patch release don't matter.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                // Write the file extension -> transform mappings
                // This currently uses a dummy set of variants to calculate the mappings.
                // Do not write this if it will not be used
                // TODO - simplify extracting the mappings
                // TODO - deduplicate this data, as the mapping is project scoped and almost always the same across all projects of a given type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/infer.go

    	// which doesn't have a type yet. Set the respective default types.
    	for tpar, typ := range maxUntyped {
    		d := Default(typ)
    		assert(isTyped(d))
    		u.set(tpar, d)
    	}
    
    	// --- simplify ---
    
    	// u.inferred(tparams) now contains the incoming type arguments plus any additional type
    	// arguments which were inferred. The inferred non-nil entries may still contain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/go/doc/doc.go

    		}
    	}
    
    	// TODO(dmitshur,gri): A relatively high level call to ast.NewPackage with a simpleImporter
    	// ast.Importer implementation is made below. It might be possible to short-circuit and simplify.
    
    	// Compute package documentation.
    	pkg, _ := ast.NewPackage(fset, goFiles, simpleImporter, nil) // Ignore errors that can happen due to unresolved identifiers.
    	p := New(pkg, importPath, mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    	// which doesn't have a type yet. Set the respective default types.
    	for tpar, typ := range maxUntyped {
    		d := Default(typ)
    		assert(isTyped(d))
    		u.set(tpar, d)
    	}
    
    	// --- simplify ---
    
    	// u.inferred(tparams) now contains the incoming type arguments plus any additional type
    	// arguments which were inferred. The inferred non-nil entries may still contain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top