Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 645 for earliest (0.22 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    	events := Events{}
    
    	// Merge events as long as at least one P has more events
    	gs := make(map[uint64]gState)
    	// Note: technically we don't need a priority queue here. We're only ever
    	// interested in the earliest elligible event, which means we just have to
    	// track the smallest element. However, in practice, the priority queue
    	// performs better, because for each event we only have to compute its state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			}
    
    		case *Array:
    			// Prevent crash if the array referred to is not yet set up. Was go.dev/issue/18643.
    			// This is a stop-gap solution. Should use Checker.objPath to report entire
    			// path starting with earliest declaration in the source. TODO(gri) fix this.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			n := check.indexedElts(e.Elts, utyp.elem, utyp.len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	} else {
    		r.Header.Set("Cookie", s)
    	}
    }
    
    // Referer returns the referring URL, if sent in the request.
    //
    // Referer is misspelled as in the request itself, a mistake from the
    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

    import org.gradle.plugins.ear.descriptor.EarSecurityRole
    import org.gradle.plugins.ear.descriptor.internal.DefaultDeploymentDescriptor
    import org.gradle.test.fixtures.archive.JarTestFixture
    
    class EarTest extends AbstractArchiveTaskTest {
        Ear ear
    
        def setup() {
            ear = createTask(Ear)
            configure(ear)
            // This would normally be set by the EarPlugin
            ear.libDirName = "lib"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			}
    
    		case *Array:
    			// Prevent crash if the array referred to is not yet set up. Was go.dev/issue/18643.
    			// This is a stop-gap solution. Should use Checker.objPath to report entire
    			// path starting with earliest declaration in the source. TODO(gri) fix this.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			n := check.indexedElts(e.ElemList, utyp.elem, utyp.len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    The earliest matching pattern in the list applies, even if later patterns
    might also match.
    
    For example, consider:
    
    	GOVCS=github.com:git,evil.com:off,*:git|hg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // The -versions flag causes list to set the Module's Versions field
    // to a list of all known versions of that module, ordered according
    // to semantic versioning, earliest to latest. The flag also changes
    // the default output format to display the module path followed by the
    // space-separated version list.
    //
    // The -retracted flag causes list to report information about retracted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // this will be the case.
      // This means that when we have put all out sections together some resource
      // inputs will have multiple TPUReplicateInput nodes, so we will need a final
      // pass to merge these together into the earliest copy.
      llvm::SetVector<int64_t> forward_variable_inputs;
    
      // Validate that the only resource inputs that are read by ops in
      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    <pre>
    var t T
    </pre>
    
    <h3 id="Package_initialization">Package initialization</h3>
    
    <p>
    Within a package, package-level variable initialization proceeds stepwise,
    with each step selecting the variable earliest in <i>declaration order</i>
    which has no dependencies on uninitialized variables.
    </p>
    
    <p>
    More precisely, a package-level variable is considered <i>ready for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/go/types/check_test.go

    			// not the last entry - slide entries down (don't reorder)
    			copy(errList[index:], errList[index+1:])
    			filemap[line] = errList[:n]
    		} else {
    			// last entry - remove errList from filemap
    			delete(filemap, line)
    		}
    
    		// if filemap is empty, eliminate from errmap
    		if len(filemap) == 0 {
    			delete(errmap, filename)
    		}
    	}
    
    	// there should be no expected errors left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top