Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 799 for Creater (0.3 sec)

  1. src/internal/trace/testdata/tests/go122-create-syscall-with-p.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 624 bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

            public fun getInstance(project: Project): KotlinDeclarationProviderFactory =
                project.getService(KotlinDeclarationProviderFactory::class.java)
        }
    }
    
    /**
     * While the main declaration provider created via [createDeclarationProvider] is scope-based, there are other declaration providers which
     * are not, such as file-based declaration providers. Not all declarations provided by such declaration providers can be provided by the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            return intermediateModels.loadOrCreateIntermediateModel(identityPath, modelName, parameter, creator)
        }
    
        // TODO:configuration - split the component state, such that information for dependency resolution does not have to go through the store
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    // JSON wraps an arbitrary JSON value to be able to implement deepcopy.
    type JSON struct {
    	Object interface{}
    }
    
    // DeepCopy creates a deep copy of the wrapped JSON value.
    func (j JSON) DeepCopy() JSON {
    	return JSON{runtime.DeepCopyJSONValue(j.Object)}
    }
    
    // DeepCopyInto creates a deep copy of the wrapped JSON value and stores it in into.
    func (j JSON) DeepCopyInto(into *JSON) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Comparators.java

          Comparator<T> comparator) {
        return new LexicographicalOrdering<S>(checkNotNull(comparator));
      }
    
      /**
       * Returns {@code true} if each element in {@code iterable} after the first is greater than or
       * equal to the element that preceded it, according to the specified comparator. Note that this is
       * always true when the iterable has fewer than two elements.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/go/types/alias.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"fmt"
    	"go/token"
    )
    
    // An Alias represents an alias type.
    // Whether or not Alias types are created is controlled by the
    // gotypesalias setting with the GODEBUG environment variable.
    // For gotypesalias=1, alias declarations produce an Alias type.
    // Otherwise, the alias information is only in the type name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. cmd/bucket-metadata.go

    	}
    
    	if b.QuotaConfigUpdatedAt.IsZero() {
    		b.QuotaConfigUpdatedAt = b.Created
    	}
    
    	if b.ReplicationConfigUpdatedAt.IsZero() {
    		b.ReplicationConfigUpdatedAt = b.Created
    	}
    
    	if b.VersioningConfigUpdatedAt.IsZero() {
    		b.VersioningConfigUpdatedAt = b.Created
    	}
    
    	if b.LifecycleConfigUpdatedAt.IsZero() {
    		b.LifecycleConfigUpdatedAt = b.Created
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
      }
    
      /**
       * Returns a builder that creates immutable sorted maps whose keys are ordered by their natural
       * ordering. The sorted maps use {@link Ordering#natural()} as the comparator.
       */
      public static <K extends Comparable<?>, V> Builder<K, V> naturalOrder() {
        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantPass();
    
    // Creates a pass that drops `shape_invariant` attribute from While/WhileRegion
    // ops within device cluster.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	EncryptionAlgorithm kubeadmapi.EncryptionAlgorithmType
    }
    
    // CreateJoinControlPlaneKubeConfigFiles will create and write to disk the kubeconfig files required by kubeadm
    // join --control-plane workflow, plus the admin kubeconfig file used by the administrator and kubeadm itself; the
    // kubelet.conf file must not be created because it will be created and signed by the kubelet TLS bootstrap process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top