Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 650 for deflate (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

    /**
     * <p>Deletes files or directories. Example:</p>
     * <pre class='autoTested'>
     * task makePretty(type: Delete) {
     *   delete 'uglyFolder', 'uglyFile'
     *   followSymlinks = true
     * }
     * </pre>
     *
     * Be default symlinks will not be followed when deleting files. To change this behavior call
     * {@link Delete#setFollowSymlinks(boolean)} with true. On systems that do not support symlinks,
     * this will have no effect.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		// 1. Update to set DeletionGracePeriodSeconds and DeletionTimestamp
    		// 2. Delete the object from storage.
    		// If the update succeeds, but the delete fails (network error, internal storage error, etc.),
    		// a resource was previously left in a state that was non-recoverable.  We
    		// check if the existing stored resource has a grace period as 0 and if so
    		// attempt to delete immediately in order to recover from this scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  3. docs/bucket/replication/delete-replication.sh

    aws configure set aws_secret_access_key minioadmin --profile minioadmin
    aws configure set default.region us-east-1 --profile minioadmin
    
    aws s3api --endpoint-url http://localhost:9001 --profile minioadmin delete-object --bucket testbucket --key dir/file --version-id "$versionId"
    
    ./mc ls -r --versions myminio1/testbucket >/tmp/myminio1.txt
    ./mc ls -r --versions myminio2/testbucket >/tmp/myminio2.txt
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cgo_badmethod_issue57926.txt

    [short] skip
    [!cgo] skip
    
    # Test that cgo rejects attempts to declare methods
    # on the types C.T or *C.T; see issue #57926.
    
    ! go build
    stderr 'cannot define new methods on non-local type C.T'
    stderr 'cannot define new methods on non-local type \*C.T'
    ! stderr 'Alias'
    
    -- go.mod --
    module example.com
    go 1.12
    
    -- a.go --
    package a
    
    /*
    typedef int T;
    */
    import "C"
    
    func (C.T) f() {}
    func (recv *C.T) g() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 12:55:28 UTC 2023
    - 562 bytes
    - Viewed (0)
  5. releasenotes/notes/delete-archs-helm-templates.yaml

    Zhengzhe Yang <******@****.***> 1658791667 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 23:27:47 UTC 2022
    - 189 bytes
    - Viewed (0)
  6. cluster/gce/delete-stranded-load-balancers.sh

    	echo DELETING "${x}"
    	gcloud compute --project="${PROJECT}" firewall-rules delete "k8s-fw-${x}" -q
    	gcloud compute --project="${PROJECT}" forwarding-rules delete "${x}" --region="${REGION}" -q
    	gcloud compute --project="${PROJECT}" addresses delete "${x}" --region="${REGION}" -q
    	gcloud compute --project="${PROJECT}" target-pools delete "${x}" --region="${REGION}" -q
            result=1
        fi
    done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 05:42:46 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/compress/flate/inflate_test.go

    		"the quick brown fox jumped over",
    	}
    
    	deflated := make([]bytes.Buffer, len(ss))
    	for i, s := range ss {
    		w, _ := NewWriterDict(&deflated[i], DefaultCompression, dict)
    		w.Write([]byte(s))
    		w.Close()
    	}
    
    	inflated := make([]bytes.Buffer, len(ss))
    
    	f := NewReader(nil)
    	for i := range inflated {
    		f.(Resetter).Reset(&deflated[i], dict)
    		io.Copy(&inflated[i], f)
    	}
    	f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:23:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

                it.put("dir/deflated.txt", "bytes".bytes, ClasspathEntryVisitor.Entry.CompressionMethod.DEFLATED)
            }
    
            then:
            def zip = new ZipTestFixture(file)
            zip.hasCompression("store.txt", ZipEntry.STORED)
            zip.hasCompression("undefined.txt", ZipEntry.DEFLATED)
            zip.hasCompression("dir/deflated.txt", ZipEntry.DEFLATED)
        }
    
        def "can construct a directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Delete.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>delete</td></tr>
                <tr><td>targetFiles</td></tr>
                <tr><td>followSymlinks</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 637 bytes
    - Viewed (0)
  10. dbflute_fess/_readme.txt

    which executes outside-SQL files and you can check
    whether the SQLs have correct formats.
    
    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
Back to top