Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 771 for SKIPPED (0.1 sec)

  1. pkg/controller/endpointslicemirroring/reconciler.go

    			"Skipped %d invalid IP addresses when mirroring to EndpointSlices", numInvalidAddresses)
    	}
    
    	// Record a separate event if we skipped mirroring due to the number of
    	// addresses exceeding MaxEndpointsPerSubset.
    	if addressesSkipped > numInvalidAddresses {
    		logger.Info("Addresses in Endpoints were skipped due to exceeding MaxEndpointsPerSubset", "skippedAddresses", addressesSkipped, "endpoints", klog.KObj(endpoints))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/integTest/groovy/org/gradle/api/file/FilePermissionsIntegrationTest.groovy

            executedAndNotSkipped(":producer", ":consumer")
            outputFile.text == "Permission: 777"
    
            when: "2nd run"
            succeeds "consumer"
    
            then: "both are skipped, because they are up-to-date"
            skipped(":producer", ":consumer")
            outputFile.text == "Permission: 777"
    
            when: "3rd run"
            succeeds "consumer", "-Dpermissions=0755"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 08:40:58 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/ManualUpToDateOutputOriginIntegrationTest.groovy

            buildFile << """
                write.value = "b"
            """
            succeeds("write")
    
            then:
            skipped(":write")
            def secondBuildId = buildInvocationId
            originBuildInvocationId(":write") == null
    
            when:
            succeeds("write")
    
            then:
            skipped(":write")
            originBuildInvocationId(":write") == secondBuildId
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 10 10:29:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            executedAndNotSkipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            when:
            withInstallations(jdkMetadata).run(task)
            events = toolchainEvents(task)
            then:
            skipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            where:
            task           | tool           | configureToolchain
            ":compileJava" | "JavaCompiler" | "with java plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf.out

    > Task :hello SKIPPED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf-info.out

    ...
    
    > Task :hello SKIPPED
    Skipping task ':hello' as task onlyIf 'there is no property skipHello' is false.
    :hello (Thread[included builds,5,main]) completed. Took 0.018 secs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 201 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteStreams.java

        long skipped = skipUpTo(in, n);
        if (skipped < n) {
          throw new EOFException(
              "reached end of stream after skipping " + skipped + " bytes; " + n + " bytes expected");
        }
      }
    
      /**
       * Discards up to {@code n} bytes of data from the input stream. This method will block until
       * either the full amount has been skipped or until the end of the stream is reached, whichever
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/DryRunBuildExecutionActionTest.groovy

            contents.tasks >> toList(task1, task2)
    
            when:
            action.execute(gradle, executionPlan)
    
            then:
            textOutputFactory.toString() == "{$category}:task1 {progressstatus}SKIPPED${EOL}{$category}:task2 {progressstatus}SKIPPED$EOL"
            1 * task1.getIdentityPath() >> Path.path(':task1')
            1 * task2.getIdentityPath() >> Path.path(':task2')
            0 * delegate.execute(_, _)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/SkipWhenEmpty.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the task should be skipped when the value of the property is an empty
     * {@link org.gradle.api.file.FileCollection} or directory.</p>
     *
     * <p>If all of the inputs declared with this annotation are empty, the task will be skipped with a "NO-SOURCE" message.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCommandLineArgsIntegrationTest.groovy

            then:
            skipped(
                ":compileJava", ":processResources", ":classes", ":jar", ":assemble",
                ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":check", ":build")
        }
    
        void skipped(String... taskNames) {
            for (String taskName : taskNames) {
                outputContains(taskName + " SKIPPED\n")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 12:02:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top