Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 384 for minipay (0.17 sec)

  1. src/internal/types/testdata/fixedbugs/issue39680.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Embedding stand-alone type parameters is not permitted for now. Disabled.
    
    /*
    import "fmt"
    
    // Minimal test case.
    func _[T interface{~T}](x T) T{
    	return x
    }
    
    // Test case from issue.
    type constr[T any] interface {
    	~T
    }
    
    func Print[T constr[T]](s []T) {
    	for _, v := range s {
    		fmt.Print(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 533 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/settings.gradle.kts

    rootProject.name = "artifact-transforms-minify"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 68 bytes
    - Viewed (0)
  3. src/io/example_test.go

    	if _, err := io.ReadAtLeast(r, buf, 4); err != nil {
    		log.Fatal(err)
    	}
    	fmt.Printf("%s\n", buf)
    
    	// buffer smaller than minimal read size.
    	shortBuf := make([]byte, 3)
    	if _, err := io.ReadAtLeast(r, shortBuf, 4); err != nil {
    		fmt.Println("error:", err)
    	}
    
    	// minimal read size bigger than io.Reader stream
    	longBuf := make([]byte, 64)
    	if _, err := io.ReadAtLeast(r, longBuf, 64); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/settings.gradle

    rootProject.name = 'artifact-transforms-minify'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 68 bytes
    - Viewed (0)
  5. build-logic/dependency-modules/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 276 bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileSet.java

     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * A minimal file set.
     */
    public interface MinimalFileSet extends MinimalFileCollection {
        Set<File> getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 834 bytes
    - Viewed (0)
  7. src/math/tan_s390x.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // Minimax polynomial approximations
    DATA ·tanrodataL13<> + 0(SB)/8, $0.181017336383229927e-07
    DATA ·tanrodataL13<> + 8(SB)/8, $-.256590857271311164e-03
    DATA ·tanrodataL13<> + 16(SB)/8, $-.464359274328689195e+00
    DATA ·tanrodataL13<> + 24(SB)/8, $1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 23:30:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. internal/kms/config_test.go

    		}
    	}
    }
    
    var isPresentTests = []struct {
    	Env        map[string]string
    	IsPresent  bool
    	ShouldFail bool
    }{
    	{Env: map[string]string{}}, // 0
    	{ // 1
    		Env: map[string]string{
    			EnvKMSSecretKey: "minioy-default-key:6jEQjjMh8iPq8/gqgb4eMDIZFOtPACIsr9kO+vx8JFs=",
    		},
    		IsPresent: true,
    	},
    	{ // 2
    		Env: map[string]string{
    			EnvKMSEndpoint:   "https://127.0.0.1:7373",
    			EnvKMSDefaultKey: "minio-key",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/benchmark.cc

    ==============================================================================*/
    
    // The purpose of the benchmark library is to support building an aot binary
    // with minimal dependencies, to demonstrate small binary sizes.
    //
    // KEEP THE DEPENDENCIES MINIMAL.
    
    #include "tensorflow/compiler/aot/benchmark.h"
    
    #include <sys/time.h>
    
    #include <algorithm>
    #include <string>
    #include <utility>
    #include <vector>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * @since 21.0
       */
      boolean enclosesAll(Iterable<Range<C>> other);
    
      /** Returns {@code true} if this range set contains no ranges. */
      boolean isEmpty();
    
      /**
       * Returns the minimal range which {@linkplain Range#encloses(Range) encloses} all ranges in this
       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top