Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for REVERSED (0.09 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/groovy/build.gradle

                from fileToReverse
                into parameters.destinationDir
                filter { String line -> line.reverse() }
            }
            if (Boolean.getBoolean("org.gradle.sample.showFileSize")) {
                println "Reversed ${fileToReverse.size()} bytes from ${fileToReverse.name}"
            }
        }
    }
    
    abstract class ReverseFiles extends SourceTask {
        private final WorkerExecutor workerExecutor
    
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

        public String toString() {
            if (content.size() == 0) {
                return "<<empty>>";
            }
    
            StringBuilder out = new StringBuilder();
            List<String> reversed = Lists.reverse(content);
            for (Object item : reversed) {
                out.append(item).append("\n");
            }
    
            return out.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyJavaJointCompileSourceOrderIntegrationTest.groovy

    import spock.lang.Issue
    
    class GroovyJavaJointCompileSourceOrderIntegrationTest extends AbstractIntegrationSpec {
    
        @Issue("https://issues.apache.org/jira/browse/GROOVY-7966")
        def "compiling Groovy has the same results with reversed file order"() {
            file("src/main/groovy/JavaThing.java") << "public class JavaThing {}"
            file("src/main/groovy/AbstractThing.groovy") << "class AbstractThing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/hash/crc32/example_test.go

    // license that can be found in the LICENSE file.
    
    package crc32_test
    
    import (
    	"fmt"
    	"hash/crc32"
    )
    
    func ExampleMakeTable() {
    	// In this package, the CRC polynomial is represented in reversed notation,
    	// or LSB-first representation.
    	//
    	// LSB-first representation is a hexadecimal number with n bits, in which the
    	// most significant bit represents the coefficient of x⁰ and the least significant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 00:19:22 UTC 2015
    - 1K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san.go

    		ids = append(ids, string(id.Value))
    	}
    	return ids, nil
    }
    
    func generateReversedMap(m map[IdentityType]int) map[int]IdentityType {
    	reversed := make(map[int]IdentityType)
    	for key, value := range m {
    		reversed[value] = key
    	}
    	return reversed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/workerApi/waitForCompletion/groovy/build.gradle

            workQueue.await()
            logger.lifecycle("Created ${outputDir.get().asFile.listFiles().length} reversed files in ${projectLayout.projectDirectory.asFile.relativePath(outputDir.get().asFile)}")
    
            // end::wait-for-completion[]
        }
    }
    
    task reverseFiles(type: ReverseFiles) {
        outputDir = layout.buildDirectory.dir("reversed")
        source("sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueueTest.kt

                subject.push(r2)
            }
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup2.reversed())
            )
    
            assertThat(
                subject.nextGroup(),
                equalTo(requestsInGroup1.reversed())
            )
        }
    
        @Test
        fun `#nextGroup honours timeout`() {
    
            val subject = ConcurrentGroupingQueue<Int> { false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    // Reverse returns the value of x with its bits in reversed order.
    func Reverse(x uint) uint {
    	if UintSize == 32 {
    		return uint(Reverse32(uint32(x)))
    	}
    	return uint(Reverse64(uint64(x)))
    }
    
    // Reverse8 returns the value of x with its bits in reversed order.
    func Reverse8(x uint8) uint8 {
    	return rev8tab[x]
    }
    
    // Reverse16 returns the value of x with its bits in reversed order.
    func Reverse16(x uint16) uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileWithJavaLibraryIntegrationTest.groovy

            then:
            executedAndNotSkipped(":lib:compileScala")
            notExecuted(":lib:processResources", ":lib:jar")
        }
    
        def "scala and java source directory compilation order can be reversed (task configuration #configurationStyle)"() {
            given:
            file("src/main/scala/Scala.scala") << "class Scala { }"
            file("src/main/java/Java.java") << "public class Java { Scala scala = new Scala(); }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

    import com.google.common.collect.ImmutableMap;
    import java.util.Deque;
    
    /** Parser for a map of reversed domain names stored as a serialized radix tree. */
    @GwtCompatible
    final class TrieParser {
    
      private static final Joiner DIRECT_JOINER = Joiner.on("");
    
      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top