Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,038 for example2 (0.18 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

         * See {@link EclipseClasspath} for an example.
         */
        public Set<String> getContainers() {
            return containers;
        }
    
        public void setContainers(Set<String> containers) {
            this.containers = containers;
        }
    
        /**
         * The default output directory where Eclipse puts compiled classes.
         * <p>
         * See {@link EclipseClasspath} for an example.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

       * registrar, and have such registrations lawfully protected by internet-governing bodies such as
       * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code
       * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code
       * google.com} and {@code foo.co.uk}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/profiles/default.yaml
      installPackagePath: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/charts/
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_invalid_version.txt

    -- go.mod.orig --
    module example.com
    
    go 1.13
    -- outside/go.mod --
    module example.com/outside
    
    go 1.13
    
    require example.com v0.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/sql-databases.md

    But you can use any relational database that you want.
    
    Here we'll see an example using <a href="https://www.sqlalchemy.org/" class="external-link" target="_blank">SQLAlchemy</a>.
    
    You can easily adapt it to any database supported by SQLAlchemy, like:
    
    * PostgreSQL
    * MySQL
    * SQLite
    * Oracle
    * Microsoft SQL Server, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. docs/en/docs/python-types.md

    In all the docs there are examples compatible with each version of Python (when there's a difference).
    
    For example "**Python 3.6+**" means it's compatible with Python 3.6 or above (including 3.7, 3.8, 3.9, 3.10, etc). And "**Python 3.9+**" means it's compatible with Python 3.9 or above (including 3.10, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. docs/en/docs/contributing.md

    ### Docs for tests
    
    Most of the tests actually run against the example source files in the documentation.
    
    This helps to make sure that:
    
    * The documentation is up-to-date.
    * The documentation examples can be run as is.
    * Most of the features are covered by the documentation, ensured by test coverage.
    
    #### Apps and docs at the same time
    
    If you run the examples with, e.g.:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    func RegexError(msg string, fmt string, examples ...string) string {
    	if len(examples) == 0 {
    		return msg + " (regex used for validation is '" + fmt + "')"
    	}
    	msg += " (e.g. "
    	for i := range examples {
    		if i > 0 {
    			msg += " or "
    		}
    		msg += "'" + examples[i] + "', "
    	}
    	msg += "regex used for validation is '" + fmt + "')"
    	return msg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

    /**
     * Enables fine-tuning module details (*.iml file) of the IDEA plugin.
     * <p>
     * Example of use with a blend of most possible properties.
     * Typically you don't have to configure this model directly because Gradle configures it for you.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     *     id 'idea'
     * }
     *
     * //for the sake of this example, let's introduce a 'performanceTestCompile' configuration
     * configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    			*doImport, *seen = true, true
    		}
    	}
    	ex := doc.Examples(f)
    	sort.Slice(ex, func(i, j int) bool { return ex[i].Order < ex[j].Order })
    	for _, e := range ex {
    		*doImport = true // import test file whether executed or not
    		if e.Output == "" && !e.EmptyOutput {
    			// Don't run examples with no output.
    			continue
    		}
    		t.Examples = append(t.Examples, testFunc{pkg, "Example" + e.Name, e.Output, e.Unordered})
    		*seen = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top