Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for practice (0.2 sec)

  1. src/reflect/type.go

    			break
    		}
    
    		// Scan to colon. A space, a quote or a control character is a syntax error.
    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    		// as it is simpler to inspect the tag's bytes than the tag's runes.
    		i = 0
    		for i < len(tag) && tag[i] > ' ' && tag[i] != ':' && tag[i] != '"' && tag[i] != 0x7f {
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    		// So if there is still a free register, the allocation should have picked that one in the first place instead of
    		// trying to kick some other value out. In practice, this case does happen and it breaks the stack optimization.
    		s.freeReg(r)
    		return r
    	}
    
    	// Try to move it around before kicking out, if there is a free register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Let's start with a practical example that implements the first three steps in a build script, centered around a new source set `intTest`:
    
    .Setting up working integration tests
    ====
    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=practical-integ-test-source-set]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=practical-integ-test-source-set]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The native software plugins make use of the Gradle software model.
    
    
    [[sec:native_features]]
    == Features
    
    The native software plugins provide:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       * <p><b>Warning:</b> in most circumstances it is better to set a per-cache {@linkplain
       * #maximumSize(long) maximum size} instead of using soft references. You should only use this
       * method if you are well familiar with the practical consequences of soft references.
       *
       * <p><b>Note:</b> when this method is used, the resulting cache will use identity ({@code ==})
       * comparison to determine equality of values.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // The main difference is that this approach means that the root project can also benefit from the `plugins {}` block and it is more aligned with Gradle best practices.
    //
    // [PL] We should also aim to avoid temporary information in the user manual that could
    //      be out of date at any time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top