Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 302 for lombok (0.44 sec)

  1. src/runtime/signal_darwin_amd64.go

    	switch sig {
    	case _SIGTRAP:
    		// OS X sets c.sigcode() == TRAP_BRKPT unconditionally for all SIGTRAPs,
    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    		// The assumption is that we're very unlikely to get an
    		// asynchronous SIGTRAP at just the moment that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      // and restoring the variable(s)' values.  Variable values are indexed in the
      // checkpoint files by "checkpoint keys".  These keys along with dtype and
      // shape / slice information allow RestoreV2 to look up a variable's value in
      // the SavedModel and restore it into a tensor.
      tensorflow::StatusOr<std::string> GetVariableCheckpointKey(int index);
    
      // Retrieves the object graph from the SavedModel.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * This normalizer converts native component paths and environment
     * information to look like macOS because samples output currently shows
     * the output for macOS and is not yet capable of adapting dynamically
     * to different toolchains.
     */
    class NativeComponentReportOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/signal_arm64.go

    func (c *sigctxt) setsigpc(x uint64) { c.set_pc(x) }
    func (c *sigctxt) sigsp() uintptr    { return uintptr(c.sp()) }
    func (c *sigctxt) siglr() uintptr    { return uintptr(c.lr()) }
    
    // preparePanic sets up the stack to look like a call to sigpanic.
    func (c *sigctxt) preparePanic(sig uint32, gp *g) {
    	// We arrange lr, and pc to pretend the panicking
    	// function calls sigpanic directly.
    	// Always save LR to stack so that panics in leaf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/ops/xla_ops.cc

        .SetIsStateful()
        .Doc(R"(XLA Compile Op. For use by the XLA JIT only.
    
    Compiles a TensorFlow function into an XLA LocalExecutable and returns a key
    that _XlaRun can use to look up the LocalExecutable and execute it.
    
    key: A key that can be used to look up the local executable compiled by the
       node and associated metadata.
    
    compilation_successful: If the `must_compile` attr is false the _XlaCompile op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. releasenotes/notes/bug-report-perf.yaml

    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 20:26:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    		isPtr = true
    		t = ptr.Elem()
    	}
    	named, _ = aliases.Unalias(t).(*types.Named)
    	return
    }
    
    // Unpointer returns T given *T or an alias thereof.
    // For all other types it is the identity function.
    // It does not look at underlying types.
    // The result may be an alias.
    //
    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    }
    // end::maven-like-repo[]
    
    // tag::maven-like-repo-with-jar-repo[]
    repositories {
        maven {
            // Look for POMs and artifacts, such as JARs, here
            url = uri("http://repo2.mycompany.com/maven2")
            // Look for artifacts here if not found at the above location
            artifactUrls("http://repo.mycompany.com/jars")
            artifactUrls("http://repo.mycompany.com/jars2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    	}
    	if oapiGVK["group"] == gvk.Group &&
    		oapiGVK["version"] == gvk.Version &&
    		oapiGVK["kind"] == gvk.Kind {
    		return true
    	}
    	return false
    }
    
    // supportsQueryParam is a method that let's us look in the OpenAPI if the
    // specific group-version-kind supports the specific query parameter for
    // the PATCH end-point. Returns nil if the passed GVK supports the passed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h

    // gives a preset method, not a custom method.
    QuantizationOptions FillPresetQuantizationOptions(
        QuantizationOptions quantization_options);
    
    // Returns LogicalResult depending on the look up of activation bit width in the
    // custom quantization method. If such information exists, returns success,
    // otherwise, returns false.
    LogicalResult GetActivationBitWidth(QuantizationOptions quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top