Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,382 for causing (0.2 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param solution the solution.
         * @return this
         * @since 8.6
         */
        ProblemSpec solution(String solution);
    
        /**
         * The exception causing this problem.
         *
         * @param e the exception.
         * @return this
         * @since 8.6
         */
        ProblemSpec withException(RuntimeException e);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      return tensor_type &&
             mlir::isa<mlir::TF::ResourceType>(tensor_type.getElementType());
    }
    
    // The default criterion for operations being considered as causing or being
    // dependent on side effects. Reflects the current runtime logic; see below.
    bool OpHasSideEffects(Operation *op) {
      // Note that TFL::IfOp are only ever instantiated in flatbuffer_export; until
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # trigger external linking, and that the program that only used
    # "runtime/cgo" would always be handled with internal linking. This caused
    # issues when users included odd/unusual flags (ex: -fplugin, -flto)
    # in CGO_CFLAGS, causing the Go linker to have to read and interpret
    # non-standard host objects.
    #
    # As of 1.21 we continue to use internal linking for programs whose
    # CGO use comes only from stdlib packages in the absence of any flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

     * Otherwise, the redirect will be followed with a {@literal GET} request.
     * <p>
     * Any other type of response will be treated as an error, causing the remote cache to be disabled for the remainder of the build.
     * <p>
     * When credentials are configured (see {@link #getCredentials()}), they are sent using HTTP Basic Auth.
     * <p>
     * Requests that fail during request transmission, after having established a TCP connection, will automatically be retried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            toolingApi.requireDaemons()
            // Only Kotlin settings scripts
            settingsFile.delete()
            file("settings.gradle.kts").touch()
            // Gradle 6.5.1 instrumented jar cache has concurrency issues causing flakiness
            // This is exacerbated by those cross-version tests running concurrently
            // This isolates the Gradle user home for this version only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/internal/poll/fd_wasip1.go

    		b = b[size:]
    	}
    
    	// Trim a potentially incomplete trailing entry; this is necessary because
    	// the code in src/os/dir_unix.go does not deal well with partial values in
    	// calls to direntReclen, etc... and ends up causing an early EOF before all
    	// directory entries were consumed. ReadDirent is called with a large enough
    	// buffer (8 KiB) that at least one entry should always fit, tho this seems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. architecture/security/istio-agent.md

    at two levels. For distributing workload certificates, Envoy will send [SDS](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret)
    requests to the agent, causing the agent to submit a CSR to the configured CA (generally Istiod). For other configuration,
    Envoy will send [ADS](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/dynamic_configuration#aggregated-xds-ads)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. doc/next/9-todo.md

    CL 555255 - an x/tools CL implements accepted proposal https://go.dev/issue/53367 for x/tools/go/cfg
    CL 585216 - an x/build CL mentions accepted proposal https://go.dev/issue/56001 because it fixed a bug causing downloads not to be produced for that new-to-Go-1.22 port; this isn't relevant to Go 1.23 release notes
    CL 481062 - added examples for accepted proposal https://go.dev/issue/56102; doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/scale_test.go

    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    // TCP sockets goes through a TIME-WAIT state (default 60 sec) before being freed,
    // causing conntrack entries and ephemeral ports to be hold for 60 seconds
    // despite the probe may have finished in less than 1 second.
    // If the rate of probes is higher than the rate the OS recycles the ports used,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. src/go/parser/interface.go

    //
    // The mode parameter controls the amount of source text parsed and
    // other optional parser functionality. If the [SkipObjectResolution]
    // mode bit is set (recommended), the object resolution phase of
    // parsing will be skipped, causing File.Scope, File.Unresolved, and
    // all Ident.Obj fields to be nil. Those fields are deprecated; see
    // [ast.Object] for details.
    //
    // Position information is recorded in the file set fset, which must not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top