Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 338 for convenient (1.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // returned by `tsl::Env::Default`.
    absl::StatusOr<std::string> CreateTmpDir();
    
    // Convenience function for writing string `data` to file without the need to
    // pass `tsl::Env` instance. Internally it uses the default `tsl::Env::Default`.
    absl::Status WriteStringToFile(absl::string_view file_path,
                                   absl::string_view data);
    
    // Convenience function for reading string data from file at `file_path` without
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java

    /**
     * Collects the output of the settings decrypter.
     *
     */
    public interface SettingsDecryptionResult {
    
        /**
         * Gets the decrypted server. This is a convenience method to retrieve the first element from {@link #getServers()}.
         *
         * @return The decrypted server or {@code null}.
         */
        Server getServer();
    
        /**
         * Gets the decrypted servers.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         */
        boolean withStateLock(InternalTransformer<ResourceLockState.Disposition, ResourceLockState> stateLockAction);
    
        /**
         * A convenience for using {@link #withStateLock(InternalTransformer)}.
         */
        void withStateLock(Runnable action);
    
        /**
         * A convenience for using {@link #withStateLock(InternalTransformer)}.
         */
        <T> T withStateLock(Supplier<T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/sort/sort.go

    		}
    	}
    	return true
    }
    
    // Convenience types for common cases
    
    // IntSlice attaches the methods of Interface to []int, sorting in increasing order.
    type IntSlice []int
    
    func (x IntSlice) Len() int           { return len(x) }
    func (x IntSlice) Less(i, j int) bool { return x[i] < x[j] }
    func (x IntSlice) Swap(i, j int)      { x[i], x[j] = x[j], x[i] }
    
    // Sort is a convenience method: x.Sort() calls Sort(x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    			// It doesn't actually make sense to short-circuit here, since if
    			// you connect directly to a NodePort from outside the cluster,
    			// you only get the local endpoints. But it's simpler for us and
    			// slightly more convenient for users to have this case get
    			// short-circuited too.
    			output: "10.180.0.2:80, 10.180.1.2:80",
    			masq:   false,
    		},
    		{
    			name:     "pod to LB with eTP:Local",
    			sourceIP: "10.0.0.2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "current"
            ],
            "type": "object"
          },
          "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/SignatorySupport.java

     * limitations under the License.
     */
    package org.gradle.plugins.signing.signatory;
    
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    
    /**
     * Convenience base class for {@link Signatory} implementations.
     */
    public abstract class SignatorySupport implements Signatory {
    
        @Override
        public byte[] sign(InputStream toSign) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionAdapter.java

    import org.gradle.api.Task;
    import org.gradle.api.tasks.TaskState;
    
    /**
     * A {@link TaskExecutionListener} adapter class for receiving task execution events.
     *
     * The methods in this class are empty. This class exists as convenience for creating listener objects.
     */
    @SuppressWarnings("deprecation")
    public class TaskExecutionAdapter implements TaskExecutionListener {
    
        @Override
        public void beforeExecute(Task task) {}
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/internal/trace/internal/testgen/go122/trace.go

    		panic(err.Error())
    	}
    }
    
    // Trace represents an execution trace for testing.
    //
    // It does a little bit of work to ensure that the produced trace is valid,
    // just for convenience. It mainly tracks batches and batch sizes (so they're
    // trivially correct), tracks strings and stacks, and makes sure emitted string
    // and stack batches are valid. That last part can be controlled by a few options.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingSourceSet.java

    import org.gradle.language.base.LanguageSourceSet;
    import org.gradle.language.base.sources.BaseLanguageSourceSet;
    import org.gradle.language.nativeplatform.HeaderExportingSourceSet;
    
    /**
     * A convenience base class for implementing language source sets with dependencies and exported headers.
     */
    public abstract class AbstractHeaderExportingSourceSet extends BaseLanguageSourceSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top