Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 344 for differs (0.11 sec)

  1. src/cmd/go/internal/cache/default.go

    	}
    }
    
    var (
    	defaultDirOnce    sync.Once
    	defaultDir        string
    	defaultDirChanged bool // effective value differs from $GOCACHE
    	defaultDirErr     error
    )
    
    // DefaultDir returns the effective GOCACHE setting.
    // It returns "off" if the cache is disabled,
    // and reports whether the effective value differs from GOCACHE.
    func DefaultDir() (string, bool) {
    	// Save the result of the first call to DefaultDir for later use in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

        /**
         * Applies zero or more plugins or scripts.
         * <p>
         * The given closure is used to configure an {@link ObjectConfigurationAction}, which “builds” the plugin application.
         * <p>
         * This method differs from {@link #apply(java.util.Map)} in that it allows methods of the configuration action to be invoked more than once.
         *
         * @param closure the closure to configure an {@link ObjectConfigurationAction} with before “executing” it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
         */
        <T> T useCache(Supplier<? extends T> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/numberlines.go

    		}
    	}
    
    	// Visit in reverse post order so that all non-loop predecessors come first.
    	for j := len(po) - 1; j >= 0; j-- {
    		b := po[j]
    		// Find the first interesting position and check to see if it differs from any predecessor
    		firstPos := src.NoXPos
    		firstPosIndex := -1
    		if b.Pos.IsStmt() != src.PosNotStmt {
    			note(b.Pos)
    		}
    		for i := 0; i < len(b.Values); i++ {
    			v := b.Values[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeInitializer.java

    import com.google.common.collect.Multimap;
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    
    /**
     * A standalone strategy for initializing a node.
     * <p>
     * Differs from {@link ModelRegistration} in that it's more of a template for a creator.
     * It does not say anything about the actual entity (e.g. its path) or the identity of the creation rule.
     *
     * @see ModelRegistrations
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
        WorkResult delete(Action<? super DeleteSpec> action);
    
        /**
         * Creates and configures file access permissions. Differs from directory permissions due to
         * the default value the permissions start out with before the configuration is applied.
         * For details see {@link ConfigurableFilePermissions}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional string subResource = 4;
    
      // RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
      // If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional string subResource = 4;
    
      // RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
      // If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/internal/runtime/syscall/asm_linux_amd64.s

    // a4  | SI          | R10
    // a5  | R8          | R8
    // a6  | R9          | R9
    //
    // r1  | AX          | AX
    // r2  | BX          | DX
    // err | CX          | part of AX
    //
    // Note that this differs from "standard" ABI convention, which would pass 4th
    // arg in CX, not R10.
    TEXT ·Syscall6<ABIInternal>(SB),NOSPLIT,$0
    	// a6 already in R9.
    	// a5 already in R8.
    	MOVQ	SI, R10 // a4
    	MOVQ	DI, DX  // a3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. cni/pkg/install/kubeconfig.go

    	}
    	return nil
    }
    
    // checkExistingKubeConfigFile returns an error if no kubeconfig exists at the configured path,
    // or if a kubeconfig exists there, but differs from the current config.
    // In any case, an error indicates the file must be (re)written, and no error means no action need be taken
    func checkExistingKubeConfigFile(cfg *config.InstallConfig, expectedKC kubeconfig) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top