Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for upwards (0.11 sec)

  1. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    package sanitizers_test
    
    import (
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestLibFuzzer(t *testing.T) {
    	// Skip tests in short mode.
    	if testing.Short() {
    		t.Skip("libfuzzer tests can take upwards of minutes to run; skipping in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	goos, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            layout.settingsFile == settingsFile
            !layout.buildDefinitionMissing
    
            where:
            settingsFilename << TEST_CASES
        }
    
        def "returns start directory when search upwards is disabled with a #settingsFilename file"() {
            given:
            def locator = buildLayoutFactoryFor()
    
            and:
            def currentDir = tmpDir.createDir("sub/current")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	d.storage[d.n] = d.dsbyte
    	d.n++
    	for d.n < d.rate {
    		d.storage[d.n] = 0
    		d.n++
    	}
    	// This adds the final one bit for the padding. Because of the way that
    	// bits are numbered from the LSB upwards, the final bit is the MSB of
    	// the last byte.
    	d.storage[d.rate-1] ^= 0x80
    	// Apply the permutation
    	d.permute()
    	d.state = spongeSqueezing
    	d.n = d.rate
    	copyOut(d, d.storage[:d.rate])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Trace upwards until we hit a (block) argument a value originates from.
    static LogicalResult traceUpwardsToArgument(Value v, llvm::DenseSet<Value> seen,
                                                BlockArgument *out) {
      if (seen.contains(v)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/x448/float16/LICENSE

    = vendor/github.com/x448/float16 licensed under: =
    
    MIT License
    
    Copyright (c) 2019 Montgomery Edwards⁴⁴⁸ and Faye Amacker
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 13:35:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

    ) {
      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. cmd/crossdomain-xml-handler.go

    // or Adobe Acrobat (though not necessarily limited to these), permission to handle data across domains.
    // When clients request content hosted on a particular source domain and that content make requests
    // directed towards a domain other than its own, the remote domain needs to host a cross-domain
    // policy file that grants access to the source domain, allowing the client to continue the transaction.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 06:42:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "ProjectConnection provides GradleProject for subproject of multi-project build with --no-search-upward"() {
            when:
            def rootDir = rootMulti.file("x")
            GradleProject project = getGradleProjectWithProjectConnection(rootDir, modelType, false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/internal/fuzz/pcg.go

    }
    
    // The functions in pcg implement a 32 bit PRNG with a 64 bit period: pcg xsh rr
    // 64 32. See https://www.pcg-random.org/ for more information. This
    // implementation is geared specifically towards the needs of fuzzing: Simple
    // creation and use, no reproducibility, no concurrency safety, just the
    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top