Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for convenient (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Complex build logic is usually a good candidate for being encapsulated either as custom task or binary plugin.
    Custom task and plugin implementations should not live in the build script.
    It is very convenient to use `buildSrc` for that purpose as long as the code does not need to be shared among multiple, independent projects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [source,kotlin]
    ----
    apply(plugin = "org.barfuin.gradle.taskinfo")
    apply<MyPlugin>()
    ----
    |===
    
    [[sec:plugins_block]]
    == 1. Applying plugins using the `plugins{}` block
    
    The plugin DSL provides a concise and convenient way to declare plugin dependencies.
    
    [[sec:binary_plugins]]
    The plugins block configures an instance of link:{javadocPath}/org/gradle/plugin/use/PluginDependenciesSpec.html[`PluginDependenciesSpec`]:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/runtime/runtime_test.go

    		if s1[i] != s2[i] {
    			return false
    		}
    	}
    	return true
    }
    
    func TestEqString(t *testing.T) {
    	// This isn't really an exhaustive test of == on strings, it's
    	// just a convenient way of documenting (via eqstring_generic)
    	// what == does.
    	s := []string{
    		"",
    		"a",
    		"c",
    		"aaa",
    		"ccc",
    		"cccc"[:3], // same contents, different string
    		"1234567890",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    == Summary
    
    Executing Gradle builds on CI can be set up and configured with just a handful of steps.
    The benefit of receiving fast feedback clearly speaks for itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableTable.java

       * is called, the views are sorted by the supplied comparators.
       *
       * <p>For empty or single-cell immutable tables, {@link #of()} and {@link #of(Object, Object,
       * Object)} are even more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple tables in series. Each table is a superset of the tables created before it.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Dependency locking can be used in cases where reproducibility is not the main goal.
    As a build author, you may want to have different frequency of dependency version updates, based on their origin for example.
    In that case, it might be convenient to ignore some dependencies because you always want to use the latest version for those.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/runtime1.go

    	// The value can change at any time (in response to os.Setenv("GODEBUG"))
    	// and affects all extant timer channels immediately.
    	// Programs wouldn't normally change over an execution,
    	// but allowing it is convenient for testing and for programs
    	// that do an os.Setenv in main.init or main.main.
    	asynctimerchan atomic.Int32
    }
    
    var dbgvars = []*dbgVar{
    	{name: "adaptivestackstart", value: &debug.adaptivestackstart},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        Timeout(long millis, String label) {
          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        Timeout(long millis, String label) {
          this.millis = millis;
          this.label = label;
        }
    
        @Override
        public String toString() {
          return label;
        }
      }
    
      /** Convenient subsets of the {@link Timeout} enumeration for specifying scenario outcomes. */
      private enum TimeoutsToUse {
        ANY(Timeout.values()),
        PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/go/token/position.go

    		}
    	}
    	if s == "" {
    		s = "-"
    	}
    	return s
    }
    
    // Pos is a compact encoding of a source position within a file set.
    // It can be converted into a [Position] for a more convenient, but much
    // larger, representation.
    //
    // The Pos value for a given file is a number in the range [base, base+size],
    // where base and size are specified when a file is added to the file set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top