Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for source2 (0.32 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 40 bytes
    - Viewed (0)
  2. subprojects/core/src/test/resources/META-INF/gradle-plugins/org.gradle.custom-rule-source.properties

    Adam Murdoch <******@****.***> 1715297124 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 70 bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/td-aliases-source-principal-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug

    Bixia Zheng <******@****.***> 1583166655 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 02 16:34:34 UTC 2020
    - 83 bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-td-aliases-source-principal-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

        /**
         * Returns the source compatibility used for compiling Java sources.
         */
        JavaVersion getSourceCompatibility();
    
        /**
         * Sets the source compatibility used for compiling Java sources.
         * <p>
         * This property cannot be set if a {@link #getToolchain() toolchain} has been configured.
         *
         * @param value The value for the source compatibility
         *
         * @see #toolchain(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  7. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    Java Modules are a feature of Java itself, available since Java 9, that allows for better encapsulation.
    
    In Gradle, each _source set_ containing Java sources can be turned into a module by adding a `module-info.java` file.
    Typically, in a project with Java Modules like this one, the _main_ source set of a subproject represents a module.
    
    ```
    src
    └── main
        └── java
            └── module-info.java
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. hack/verify-shellcheck.sh

      SHELLCHECK_COLORIZED_OUTPUT="never"
    fi
    
    # common arguments we'll pass to shellcheck
    SHELLCHECK_OPTIONS=(
      # allow following sourced files that are not specified in the command,
      # we need this because we specify one file at a time in order to trivially
      # detect which files are failing
      "--external-sources"
      # include our disabled lints
      "--exclude=${SHELLCHECK_DISABLED}"
      # set colorized output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

            output.contains """Binary inputs: [Library source 'sampleLib:compA', Library source 'sampleLib:compB', Library source 'sampleLib:compC', Library source 'sampleLib:compD', Library source 'sampleLib:bin:binaryA', Library source 'sampleLib:bin:binaryB', Library source 'sampleLib:bin:binaryC', Library source 'sampleLib:bin:binaryD']"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. pkg/kubelet/config/mux.go

    	channel, exists := m.sources[source]
    	if exists {
    		return channel
    	}
    	newChannel := make(chan interface{})
    	m.sources[source] = newChannel
    
    	go wait.Until(func() { m.listen(source, newChannel) }, 0, ctx.Done())
    	return newChannel
    }
    
    func (m *mux) listen(source string, listenChannel <-chan interface{}) {
    	for update := range listenChannel {
    		m.merger.Merge(source, update)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top