Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 345 for convenient (0.2 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
         * at table entries if it is 0.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. src/runtime/symtabinl.go

    	u := inlineUnwinder{f: f, inlTree: inlTree}
    	return u, u.resolveInternal(pc)
    }
    
    func (u *inlineUnwinder) resolveInternal(pc uintptr) inlineFrame {
    	return inlineFrame{
    		pc: pc,
    		// Conveniently, this returns -1 if there's an error, which is the same
    		// value we use for the outermost frame.
    		index: pcdatavalue1(u.f, abi.PCDATA_InlTreeIndex, pc, false),
    	}
    }
    
    func (uf inlineFrame) valid() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

              }
            },
            "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
    - 122.9K bytes
    - Viewed (0)
  4. build.gradle.kts

        id("gradlebuild.update-versions")            // Local development: Convenience tasks to update versions in this build: 'released-versions.json', 'agp-versions.properties', ...
        id("gradlebuild.wrapper")                    // Local development: Convenience tasks to update the wrapper (like 'nightlyWrapper')
    }
    
    description = "Adaptable, fast automation for all"
    
    dependencyAnalysis {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top