Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for Street (0.11 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	// When manufacturing new slots that correspond to splits of
    	// composite parameters, we want to avoid creating a new sub-slot
    	// that differs from some existing sub-slot only by type, since
    	// the debug location analysis will treat that slot as a separate
    	// entity. To achieve this, create a lookup table of existing
    	// slots that is type-insenstitive.
    	sc := newSlotCanonicalizer()
    	for _, sl := range f.Names {
    		sc.lookup(*sl)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
      // Populated by the system.
      // Read-only.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    				// skip if it's not hintfn from rejectorPlugins.
    				continue
    			}
    
    			hint, err := hintfn.QueueingHintFn(logger, pod, oldObj, newObj)
    			if err != nil {
    				// If the QueueingHintFn returned an error, we should treat the event as Queue so that we can prevent
    				// the Pod from being stuck in the unschedulable pod pool.
    				oldObjMeta, newObjMeta, asErr := util.As[klog.KMetadata](oldObj, newObj)
    				if asErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
      // Populated by the system.
      // Read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    extern "C" inline void* ThreadFuncWithCLinkage(void* thread) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    		return CMPgt
    	}
    
    	if t.kind != x.kind {
    		return cmpForNe(t.kind < x.kind)
    	}
    
    	if t.obj != nil || x.obj != nil {
    		// Special case: we keep byte and uint8 separate
    		// for error messages. Treat them as equal.
    		switch t.kind {
    		case TUINT8:
    			if (t == Types[TUINT8] || t == ByteType) && (x == Types[TUINT8] || x == ByteType) {
    				return CMPeq
    			}
    
    		case TINT32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    			if *gccgo {
    				fmt.Fprintf(fc, "extern byte *%s;\n", n.C)
    			} else {
    				// Force a reference to all symbols so that
    				// the external linker will add DT_NEEDED
    				// entries as needed on ELF systems.
    				// Treat function variables differently
    				// to avoid type conflict errors from LTO
    				// (Link Time Optimization).
    				if n.Kind == "fpvar" {
    					fmt.Fprintf(fm, "extern void %s();\n", n.C)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	d.calcCompUnitRanges()
    	sort.Sort(compilationUnitByStartPC(d.linkctxt.compUnits))
    
    	// newdie adds DIEs to the *beginning* of the parent's DIE list.
    	// Now that we're done creating DIEs, reverse the trees so DIEs
    	// appear in the order they were created.
    	for _, u := range d.linkctxt.compUnits {
    		reversetree(&u.DWInfo.Child)
    	}
    	reversetree(&dwtypes.Child)
    	movetomodule(d.linkctxt, &dwtypes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_Reset(const TF_SessionOptions* opt,
                                        const char** containers, int ncontainers,
                                        TF_Status* status);
    // Treat the bytes proto[0,proto_len-1] as a serialized GraphDef and
    // add the nodes in that GraphDef to the graph for the session.
    //
    // Prefer use of TF_Session and TF_GraphImportGraphDef over this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                'a.txt',
                'dir/b.txt',
                'c.txt'
            )
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "copy from file tree"() {
            given:
            buildScript '''
            task cpy {
                doLast {
                    copy {
                        from fileTree(dir: 'src', excludes: ['**/ignore/**'], includes: ['*', '*/*'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top