Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,559 for necessarily (0.6 sec)

  1. android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

           */
          return;
        }
    
        /*
         * Only under Windows (or hypothetically when running with some other non-POSIX, ACL-based
         * filesystem) does our prod code look up the username. Thus, this test doesn't necessarily test
         * anything interesting under most environments. Still, we can run it (except for Android, at
         * least old versions), so we mostly do. This is useful because we don't actually run our CI on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/critical.go

    			if phi != nil {
    				argID := phi.Args[i].ID
    				// find or record the block that we used to split
    				// critical edges for this argument
    				if d = blocks[argID]; d == nil {
    					// splitting doesn't necessarily remove the critical edge,
    					// since we're iterating over len(f.Blocks) above, this forces
    					// the new blocks to be re-examined.
    					d = f.NewBlock(BlockPlain)
    					d.Pos = p.Pos
    					blocks[argID] = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/mime/quotedprintable/writer.go

    	return &Writer{w: w}
    }
    
    // Write encodes p using quoted-printable encoding and writes it to the
    // underlying [io.Writer]. It limits line length to 76 characters. The encoded
    // bytes are not necessarily flushed until the [Writer] is closed.
    func (w *Writer) Write(p []byte) (n int, err error) {
    	for i, b := range p {
    		switch {
    		// Simple writes are done in batch.
    		case b >= '!' && b <= '~' && b != '=':
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/checkptr.go

    // the address p.
    //
    // Importantly, if p1 and p2 point into the same variable, then
    // checkptrBase(p1) == checkptrBase(p2). However, the converse/inverse
    // is not necessarily true as allocations can have trailing padding,
    // and multiple variables may be packed into a single allocation.
    //
    // checkptrBase should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt

      /** Returns true if this adapter can read [header] in a choice. */
      fun matches(header: DerHeader): Boolean
    
      /**
       * Returns a value from this adapter.
       *
       * This must always return a value, though it doesn't necessarily need to consume data from
       * [reader]. For example, if the reader's peeked tag isn't readable by this adapter, it may return
       * a default value.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. manifests/charts/UPDATING-CHARTS.md

    This allows configuration without re-installing or restarting deployments.
    
    If the change is to a Kubernetes field (such as modifying a Deployment attribute), it will likely need to be install-time configuration.
    However, that doesn't necessarily mean a PR to add a value will be accepted.
    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pkg/test/env/istio.go

    	IstioOut = verifyFile(TARGET_OUT, TARGET_OUT.ValueOrDefaultFunc(getDefaultIstioOut))
    
    	// LocalOut is the location of the output directory for the OS we are running in,
    	// not necessarily the OS we are building for
    	LocalOut = verifyFile(LOCAL_OUT, LOCAL_OUT.ValueOrDefaultFunc(getDefaultIstioOut))
    
    	// OtelCollectorInstallFilePath is the OpenTelemetry installation file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
     * data but not necessarily the result data (see also [resultFileSuffix]).
     */
    abstract class AbstractSessionInvalidationTest<SESSION> : AbstractAnalysisApiBasedTest() {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

         * Get all names such that {@link #getConfiguration(String)} return a non-null value.
         */
        Set<String> getConfigurationNames();
    
        /**
         * Returns the configuration with the given name. A component does not necessarily define any configurations.
         * <p>
         * This method should be avoided if possible. Instead, use {@link GraphSelectionCandidates#getVariantByConfigurationName(String)},
         * which exposes configurations as a variant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/internal/buildcfg/exp.go

    type ExperimentFlags struct {
    	goexperiment.Flags
    	baseline goexperiment.Flags
    }
    
    // Experiment contains the toolchain experiments enabled for the
    // current build.
    //
    // (This is not necessarily the set of experiments the compiler itself
    // was built with.)
    //
    // experimentBaseline specifies the experiment flags that are enabled by
    // default in the current toolchain. This is, in effect, the "control"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top