Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,485 for cleaning (0.14 sec)

  1. src/syscall/zerrors_windows.go

    	ETOOMANYREFS - APPLICATION_ERROR:    "too many references: cannot splice",
    	ETXTBSY - APPLICATION_ERROR:         "text file busy",
    	EUCLEAN - APPLICATION_ERROR:         "structure needs cleaning",
    	EUNATCH - APPLICATION_ERROR:         "protocol driver not attached",
    	EUSERS - APPLICATION_ERROR:          "too many users",
    	EWOULDBLOCK - APPLICATION_ERROR:     "resource temporarily unavailable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  2. docs/site-replication/run-replication-with-checksum-header.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    # Function to convert number to corresponding alphabet
    num_to_alpha() {
    	local num=$1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def result = executer.usingExecutable(script.absolutePath).withTasks("help").run()
    
            then:
            result.output.contains("my app")
    
            // Don't follow links when cleaning up test files
            testDirectory.usingNativeTools().deleteDir()
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        def "uses script basename as application name for use in log messages"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	if k.workloadEntryController != nil {
    		k.MeshServiceController.DeleteRegistry(clusterID, provider.External)
    	}
    	if err := k.Controller.Cleanup(); err != nil {
    		log.Warnf("failed cleaning up services in %s: %v", clusterID, err)
    	}
    	if k.opts.XDSUpdater != nil {
    		k.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{Full: true, Reason: model.NewReasonStats(model.ClusterUpdate)})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/utils.go

    	// 3. Read the signed certificate
    	certChain, caCert, err := readSignedCertificate(client, csr, certWatchTimeout, caFilePath, appendCaCert)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	// If there is a failure of cleaning up CSR, the error is returned.
    	return certChain, caCert, err
    }
    
    // Read CA certificate and check whether it is a valid certificate.
    func readCACert(caCertPath string) ([]byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/controller/deployment/rolling.go

    		newReplicasCount := *(targetRS.Spec.Replicas) - scaledDownCount
    		if newReplicasCount > *(targetRS.Spec.Replicas) {
    			return nil, 0, fmt.Errorf("when cleaning up unhealthy replicas, got invalid request to scale down %s/%s %d -> %d", targetRS.Namespace, targetRS.Name, *(targetRS.Spec.Replicas), newReplicasCount)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/runtime/signal_windows_test.go

    		expectedOutput = "exceptionCount: 1\ncontinueCount: 1\nunhandledCount: 0\n"
    	} else {
    		expectedOutput = "exceptionCount: 1\ncontinueCount: 1\nunhandledCount: 1\n"
    	}
    	// cleaning output
    	cleanedOut := strings.ReplaceAll(string(out), "\r\n", "\n")
    	if cleanedOut != expectedOutput {
    		t.Errorf("expected output %q, got %q", expectedOutput, cleanedOut)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

                            launcher.run();
                            System.out.println("Build was successful");
                        } finally {
                            // Clean up
                            System.out.println("Cleaning up after the build");
                            connection.close();
                            System.out.println("Connection is closed.");
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. docs/site-replication/run-ssec-object-replication-with-compression.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill minio || sudo pkill minio
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    cleanup
    
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top