Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,270 for because3 (0.15 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def "fires build listener events on included builds"() {
            given:
            dependency 'org.test:buildB:1.0'
            dependency buildB, 'org.test:buildC:1.0'
    
            when:
            execute()
    
            then:
            verifyBuildEvents()
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

                @DisableCachingByDefault(because = 'do-not-cache-by-default reason')
                class NotCacheableByDefaultWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task reason')
                class UntrackedTrackWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task-with-cacheable reason')
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons.sh

    # Disabling this flag will force all addon managers to assume they are the
    # leaders.
    ADDON_MANAGER_LEADER_ELECTION=${ADDON_MANAGER_LEADER_ELECTION:-true}
    
    # Remember that you can't log from functions that print some output (because
    # logs are also printed on stdout).
    # $1 level
    # $2 message
    function log() {
      # manage log levels manually here
    
      # add the timestamp if you find it useful
      case $1 in
        DB3 )
    #        echo "$1: $2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[cannot_write_output]]
    == Cannot write to an output file or directory
    
    This error indicates that :
    
    - an output directory cannot be written because the directory property which has been configured actually refers to a regular file (or something else than an actual directory).
    - or that an output file cannot be written because the file property which has been configured actually refers to a directory.
    - or the parent of the output location exists and is a file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'SomeEnum' | ''                 | 'SomeEnum.A'
            'File'     | ''                 | 'new File("some/path")'  // Not invalidated because type is not final
            'GString'  | ''                 | 'GString.EMPTY'          // Not invalidated because type is not final
            'Iterable' | '<Options>'        | 'Arrays.asList(new Options(), new Options())'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         *   <li>If this field's value == currentThread, we know that it's up to date, because write
         *       operations in a thread always happen-before subsequent read operations in the same
         *       thread
         *   <li>If this field's value == null because of unsafe publication, we know that it isn't the
         *       object associated with our thread, because if it was the publication wouldn't have been
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            output.contains 'Output: outputFiles$1 [output1.txt]'
            output.contains 'Output: outputFiles$2 [output2.txt]'
        }
    
        @ToBeFixedForConfigurationCache(because = "task references another task")
        def "nested properties are discovered"() {
            buildFile << classesForNestedProperties()
            buildFile << """
                task test(type: TaskWithNestedObjectProperty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         *   <li>If this field's value == currentThread, we know that it's up to date, because write
         *       operations in a thread always happen-before subsequent read operations in the same
         *       thread
         *   <li>If this field's value == null because of unsafe publication, we know that it isn't the
         *       object associated with our thread, because if it was the publication wouldn't have been
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

             */
            return 0;
        }
    
        /* 
         * We overload this method from ServerMessageBlock because
         * we want writeAndXWireFormat to write the parameterWords
         * and bytes. This is so we can write batched smbs because
         * all but the first smb of the chaain do not have a header
         * and therefore we do not want to writeHeaderWireFormat. We
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    func (s *SecureServingInfo) tlsConfig(stopCh <-chan struct{}) (*tls.Config, error) {
    	tlsConfig := &tls.Config{
    		// Can't use SSLv3 because of POODLE and BEAST
    		// Can't use TLSv1.0 because of POODLE and BEAST using CBC cipher
    		// Can't use TLSv1.1 because of RC4 cipher usage
    		MinVersion: tls.VersionTLS12,
    		// enable HTTP2 for go's 1.7 HTTP Server
    		NextProtos: []string{"h2", "http/1.1"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top