Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 614 for createfing (0.58 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    }
    
    func (f *fixture) run_(ctx context.Context, deploymentName string, startInformers bool, expectError bool) {
    	c, informers, err := f.newController(ctx)
    	if err != nil {
    		f.t.Fatalf("error creating Deployment controller: %v", err)
    	}
    	if startInformers {
    		stopCh := make(chan struct{})
    		defer close(stopCh)
    		informers.Start(stopCh)
    	}
    
    	err = c.syncDeployment(ctx, deploymentName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/build.gradle.kts

    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crd/config.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IstioKind.
    func (in *IstioKind) DeepCopy() *IstioKind {
    	if in == nil {
    		return nil
    	}
    	out := new(IstioKind)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *IstioKind) DeepCopyObject() runtime.Object {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer_test.go

    	if err != nil {
    		t.Fatalf("unexpected error creating tmp dir: %v", err)
    	}
    	defer os.RemoveAll(targetDir)
    
    	_, err = NewAtomicWriter(targetDir, "-test-")
    	if err != nil {
    		t.Fatalf("unexpected error creating writer for existing target dir: %v", err)
    	}
    
    	nonExistentDir, err := utiltesting.MkTmpdir("atomic-write")
    	if err != nil {
    		t.Fatalf("unexpected error creating tmp dir: %v", err)
    	}
    	err = os.Remove(nonExistentDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_other.go

    // platformSetup is called after setting up the ProxyServer, but before creating the
    // Proxier. It should fill in any platform-specific fields and perform other
    // platform-specific setup.
    func (s *ProxyServer) platformSetup(ctx context.Context) error {
    	return unsupportedError
    }
    
    // platformCheckSupported is called immediately before creating the Proxier, to check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/kotlin/buildSrc/src/main/kotlin/com/acme/InstrumentedJarsPlugin.kt

    import org.gradle.api.component.AdhocComponentWithVariants
    import org.gradle.api.component.SoftwareComponentFactory
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.kotlin.dsl.creating
    import org.gradle.kotlin.dsl.getValue
    import org.gradle.kotlin.dsl.register
    import org.gradle.kotlin.dsl.named
    import javax.inject.Inject
    
    // tag::inject_software_component_factory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	s, dFunc, err := factory.Create(*sc.ForResource(schema.GroupResource{Resource: "endpoints"}), newFunc, newListFunc, "")
    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	t.Cleanup(dFunc)
    
    	tests := []struct {
    		testName     string
    		servers      []serverInfo
    		expectLeases []string
    	}{
    		{
    			testName: "existing IP satisfy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet_test.go

    			useRename: true,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			createFn := createCertAndKeyFiles
    			if tt.useRename {
    				createFn = createCertAndKeyFilesUsingRename
    			}
    
    			certDir := t.TempDir()
    			certPath, keyPath, err := createFn(certDir)
    			if err != nil {
    				t.Fatalf("Unable to setup cert files: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/resourcequota/admission_test.go

    	informerFactory := informers.NewSharedInformerFactory(kubeClient, 0)
    
    	handler, err := createHandler(kubeClient, informerFactory, stopCh)
    	if err != nil {
    		t.Errorf("Error occurred while creating admission plugin: %v", err)
    	}
    
    	namespace := "default"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. platforms/core-execution/hashing/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools for creating secure hashes for files and other content"
    
    gradlebuildJava.usedInWorkers() // org.gradle.internal.nativeintegration.filesystem.Stat is used in workers
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.guava)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 400 bytes
    - Viewed (0)
Back to top