Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for addLine (0.18 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

    //         |  +---------------+  |
    //    +----+- |    Switch     | <+
    //    |    |  +---------------+
    //    |    |    |
    //    |    |    |
    //    |    |    v
    //    |    |  +---------------+
    //    |    +- |    AddOne     |
    //    |       +---------------+
    //    |       +---------------+
    //    +-----> |     Exit      |
    //            +---------------+
    InductionVarInfo CreateInductionVariable(const Scope& root,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	d.addDwarfAddrField(su, v)
    }
    
    // addDwarfAddrField adds a DWARF field in DWARF 64bits or 32bits.
    func (d *dwctxt) addDwarfAddrField(sb *loader.SymbolBuilder, v uint64) {
    	if isDwarf64(d.linkctxt) {
    		sb.AddUint(d.arch, v)
    	} else {
    		sb.AddUint32(d.arch, uint32(v))
    	}
    }
    
    // addDwarfAddrRef adds a DWARF pointer in DWARF 64bits or 32bits.
    func (d *dwctxt) addDwarfAddrRef(sb *loader.SymbolBuilder, t loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			select {
    			case <-stopCh:
    				return
    			default:
    				cacher.Lock()
    				cacher.bookmarkWatchers.popExpiredWatchersThreadUnsafe()
    				cacher.Unlock()
    			}
    		}
    	}()
    
    	// wait for adding/removing watchers to end
    	wg.Wait()
    
    	if watchErr != nil {
    		t.Fatal(watchErr)
    	}
    
    	// wait out the expiration period and pop expired watchers
    	time.Sleep(2 * time.Second)
    	cacher.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    	// nestLev is used to track and limit the recursion depth
    	// during parsing.
    	nestLev int
    }
    
    func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode Mode) {
    	p.file = fset.AddFile(filename, -1, len(src))
    	eh := func(pos token.Position, msg string) { p.errors.Add(pos, msg) }
    	p.scanner.Init(p.file, src, eh, scanner.ScanComments)
    
    	p.top = true
    	p.mode = mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * are never inherited.
         *
         * Rationale: if we make configuration inherit attributes, then it means that 2 "child" configurations
         * could easily have the same set of attributes. It also means that just adding a configuration could
         * make resolution fail if we decide that 2 configurations with the same attributes lead to an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    				// Record that we were able to bind to the parent
    				pr.AttachedRoutes++
    			}
    			parentRefs = append(parentRefs, rpi)
    		}
    		for _, gw := range gateways[gk] {
    			// Append all matches. Note we may be adding mismatch section or ports; this is handled later
    			appendParent(gw, pk)
    		}
    	}
    	// Ensure stable order
    	slices.SortBy(parentRefs, func(a routeParentReference) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    	if !dstOpts.NoAuditLog {
    		auditObjectErasureSet(ctx, dstObject, &er)
    	}
    
    	// This call shouldn't be used for anything other than metadata updates or adding self referential versions.
    	if !srcInfo.metadataOnly {
    		return oi, NotImplemented{}
    	}
    
    	if !dstOpts.NoLock {
    		lk := er.NewNSLock(dstBucket, dstObject)
    		lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    		loi.NextMarker = opts.encodeMarker(last.Name)
    		loi.NextVersionIDMarker = last.VersionID
    	}
    	return loi, nil
    }
    
    func maxKeysPlusOne(maxKeys int, addOne bool) int {
    	if maxKeys < 0 || maxKeys > maxObjectList {
    		maxKeys = maxObjectList
    	}
    	if addOne {
    		maxKeys++
    	}
    	return maxKeys
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
            }
    
            private void addConfiguration(String c) {
                confAware.addConfiguration(c);
                if (state != State.EXCLUDE) {
                    // we are currently adding a configuration to either an include, exclude or artifact
                    // element
                    // of a dependency. This means that we have to add this element to the corresponding
                    // conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    	// adding sums to go.sum). Packages that set this are responsible for calling
    	// WriteGoMod explicitly.
    	ExplicitWriteGoMod bool
    )
    
    // Variables set in Init.
    var (
    	initialized bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top