Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,069 for simply (0.14 sec)

  1. src/io/ioutil/ioutil.go

    // the provided Reader r.
    //
    // Deprecated: As of Go 1.16, this function simply calls [io.NopCloser].
    func NopCloser(r io.Reader) io.ReadCloser {
    	return io.NopCloser(r)
    }
    
    // Discard is an io.Writer on which all Write calls succeed
    // without doing anything.
    //
    // Deprecated: As of Go 1.16, this value is simply [io.Discard].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. cmd/dummy-handlers.go

    	if objAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    	// Allow getBucketCors if policy action is set, since this is a dummy call
    	// we are simply re-purposing the bucketPolicyAction.
    	if s3Error := checkRequestAuthType(ctx, r, policy.GetBucketPolicyAction, bucket, ""); s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/testing/fake.go

    }
    
    // GetVirtualServers is a fake implementation, it simply returns all VirtualServers in the cache store.
    func (f *FakeIPVS) GetVirtualServers() ([]*utilipvs.VirtualServer, error) {
    	res := make([]*utilipvs.VirtualServer, 0)
    	for _, svc := range f.Services {
    		res = append(res, svc)
    	}
    	return res, nil
    }
    
    // Flush is a fake implementation, it simply clears the cache store.
    func (f *FakeIPVS) Flush() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceRepository.java

         */
        ExternalResourceRepository withProgressLogging();
    
        /**
         * Returns the resource with the given name. Note that this method does not access the resource in any way, it simply creates an object that can. To access the resource, use the methods on the returned object.
         *
         * @param resource The location of the resource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/lifecycle/admission_failure_handler_stub.go

    limitations under the License.
    */
    
    package lifecycle
    
    import (
    	"k8s.io/api/core/v1"
    )
    
    // AdmissionFailureHandlerStub is an AdmissionFailureHandler that does not perform any handling of admission failure.
    // It simply passes the failure on.
    type AdmissionFailureHandlerStub struct{}
    
    var _ AdmissionFailureHandler = &AdmissionFailureHandlerStub{}
    
    // NewAdmissionFailureHandlerStub returns an instance of AdmissionFailureHandlerStub.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 21 01:44:54 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. src/io/ioutil/tempfile.go

    // will not choose the same file. The caller can use f.Name()
    // to find the pathname of the file. It is the caller's responsibility
    // to remove the file when no longer needed.
    //
    // Deprecated: As of Go 1.17, this function simply calls [os.CreateTemp].
    func TempFile(dir, pattern string) (f *os.File, err error) {
    	return os.CreateTemp(dir, pattern)
    }
    
    // TempDir creates a new temporary directory in the directory dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/SerializableTester.java

    /**
     * Tests serialization and deserialization of an object, optionally asserting that the resulting
     * object is equal to the original.
     *
     * <p><b>GWT warning:</b> Under GWT, both methods simply returns their input, as proper GWT
     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/SerializableTester.java

    /**
     * Tests serialization and deserialization of an object, optionally asserting that the resulting
     * object is equal to the original.
     *
     * <p><b>GWT warning:</b> Under GWT, both methods simply returns their input, as proper GWT
     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  10. src/sort/sort.go

    // Ints sorts a slice of ints in increasing order.
    //
    // Note: as of Go 1.22, this function simply calls [slices.Sort].
    func Ints(x []int) { intsImpl(x) }
    
    // Float64s sorts a slice of float64s in increasing order.
    // Not-a-number (NaN) values are ordered before other values.
    //
    // Note: as of Go 1.22, this function simply calls [slices.Sort].
    func Float64s(x []float64) { float64sImpl(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top