Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,226 for internal2 (0.37 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    	}
    
    	out, err := s.ConvertToVersion(simple, externalGV)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	internal, err := s.ConvertToVersion(out, internalGV)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	if e, a := simple, internal; !reflect.DeepEqual(e, a) {
    		t.Errorf("Expected:\n %#v,\n Got:\n %#v", e, a)
    	}
    
    	if e, a := 1, conversions.internalToExternalCalls; e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

    import javax.net.ssl.X509TrustManager
    import okhttp3.OkHttpClient
    import okhttp3.Protocol
    import okhttp3.internal.platform.android.AndroidLog
    import okhttp3.internal.readFieldOrNull
    import okhttp3.internal.tls.BasicCertificateChainCleaner
    import okhttp3.internal.tls.BasicTrustRootIndex
    import okhttp3.internal.tls.CertificateChainCleaner
    import okhttp3.internal.tls.TrustRootIndex
    import okio.Buffer
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client.go

    type Filter = kubetypes.Filter
    
    // New returns a Client for the given type.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

    import org.gradle.internal.concurrent.CompositeStoppable
    import org.gradle.internal.execution.UnitOfWork
    import org.gradle.internal.execution.UnitOfWork.InputFileValueSupplier
    import org.gradle.internal.execution.UnitOfWork.InputVisitor
    import org.gradle.internal.execution.WorkExecutionTracker
    import org.gradle.internal.execution.WorkInputListener
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.properties.InputBehavior
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    import org.gradle.api.file.FileCopyDetails;
    import org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactoryInternal;
    import org.gradle.api.internal.artifacts.ivyservice.projectmodule.ProjectPublicationRegistry;
    import org.gradle.api.internal.plugins.PluginDescriptor;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.JvmConstants;
    import org.gradle.api.logging.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

    import org.gradle.api.internal.classloading.GroovySystemLoader;
    import org.gradle.api.internal.classloading.GroovySystemLoaderFactory;
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.internal.classloader.ClassLoaderUtils;
    import org.gradle.internal.classloader.DefaultClassLoaderFactory;
    import org.gradle.internal.classloader.FilteringClassLoader;
    import org.gradle.internal.classpath.DefaultClassPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	KubeScheduler = "kube-scheduler"
    	// KubeProxy defines variable used internally when referring to kube-proxy component
    	KubeProxy = "kube-proxy"
    	// CoreDNS defines variable used internally when referring to the CoreDNS component
    	CoreDNS = "CoreDNS"
    	// Kubelet defines variable used internally when referring to the Kubelet
    	Kubelet = "kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	// Label to skip config comparison.
    	AlwaysPushLabel = "internal.istio.io/always-push"
    
    	// InternalParentNames declares the original resources of an internally-generated config.
    	// This is used by k8s gateway-api.
    	// It is a comma separated list. For example, "HTTPRoute/foo.default,HTTPRoute/bar.default"
    	InternalParentNames      = "internal.istio.io/parents"
    	InternalRouteSemantics   = "internal.istio.io/route-semantics"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.attributes
    
    import org.gradle.api.attributes.Attribute
    import org.gradle.api.attributes.HasAttributes
    import org.gradle.api.internal.provider.DefaultProperty
    import org.gradle.api.internal.provider.DefaultProvider
    import org.gradle.api.internal.provider.PropertyHost
    import org.gradle.api.internal.provider.Providers
    import org.gradle.api.provider.Property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.local.internal
    
    import org.gradle.cache.internal.DefaultPersistentDirectoryStore
    import org.gradle.cache.internal.GradleUserHomeCleanupFixture
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top