Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 443 for Paging (0.12 sec)

  1. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes.
    - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`.
    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/jdk7/Jdk7Symlink.java

                Files.createSymbolicLink(linkFile, sourceFile);
                return true;
            } catch (InternalError e) {
                if (e.getMessage().contains("Should not get here")) {
                    // probably facing JDK-8046686
                    LOGGER.debug("Unable to create a symlink. Your system is hitting JDK bug id JDK-8046686. Symlink support disabled.", e);
                } else {
                    LOGGER.debug("Unexpected internal error", e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/kubelet/status/state/checkpoint.go

    }
    
    // NewPodResourceAllocationCheckpoint returns an instance of Checkpoint
    func NewPodResourceAllocationCheckpoint() *PodResourceAllocationCheckpoint {
    	//lint:ignore unexported-type-in-api user-facing error message
    	return &PodResourceAllocationCheckpoint{
    		AllocationEntries:   make(map[string]map[string]v1.ResourceList),
    		ResizeStatusEntries: make(map[string]v1.PodResizeStatus),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. releasenotes/README.md

    Notes should be created as part of the pull request for any user facing changes. Before
    a release, the release notes utility will be run in order to generate a release notes file
    which will be reviewed by the release managers and documentation team.
    
    ## When to Add Release Notes
    
    Release notes should be added for any user facing changes. These include:
    * CLI changes
    * API changes
    * Configuration schema change
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/concrete_function.h

    namespace tensorflow {
    
    // ConcreteFunctions correspond to an instance of a tf.function with a known set
    // of inputs (either through get_concrete_function) or an input_signature.
    // ConcreteFunction attempts to preserve the user-facing semantics of the
    // tf.function python API and can take a limited set of types as arguments
    // (to be modeled in tensorflow::Value), not just Tensors.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 29 15:50:58 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. releasenotes/notes/37057.yaml

    area: traffic-management
    
    # issue is a list of GitHub issues resolved in this note.
    # If issue is not in the current repo, specify its full URL instead.
    issue:
    - 37057
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** new configuration options to `istio-iptables` and `istio-clean-iptables`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/signature_def_function.h

    #include "tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h"
    
    namespace tensorflow {
    
    // See tensorflow/cc/experimental/saved_model/public/signature_def_function.h
    // for SignatureDefFunction's intended user-facing semantics.
    // This class is the "implementation" C++ part of the C++/C/C++ sandwich for
    // a SignatureDefFunction.
    // Note(bmzhao): Implementation-wise, SignatureDefFunctions are always saved as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     *
     * <h3>Provider</h3>
     *
     * <p>For the public API, see {@link org.gradle.api.provider.Provider Provider}.</p>
     *
     * <p>For more information on providers, beyond what the user-facing documentation and API offer,
     * see the {@link org.gradle.api.internal.provider.ProviderInternal} interface.</p>
     *
     * <p>Also, make sure to become familiar with {@link org.gradle.api.internal.provider.AbstractMinimalProvider},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/go/doc/testdata/testing.0.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  10. releasenotes/notes/istioctl_completion-ns.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 21:11:35 UTC 2021
    - 992 bytes
    - Viewed (0)
Back to top