Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,314 for copiedS (0.18 sec)

  1. pkg/kube/inject/openshift.go

    	if len(blocks) == 0 {
    		return nil, fmt.Errorf("no blocks parsed from annotation %s", groups)
    	}
    	return blocks, nil
    }
    
    // Functions below were copied from
    // https://github.com/openshift/library-go/blob/561433066966536ac17f3c9852d7d85f7b7e1e36/pkg/security/uid/uid.go
    // Copied here to avoid bringing tons of dependencies
    // License is Apache 2.0: https://github.com/openshift/library-go/blob/561433066966536ac17f3c9852d7d85f7b7e1e36/LICENSE
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. testing/performance/docs/performance-bisect.md

    All files from ~/.gradle-bisect-override will be copied to the working directory. Make changes to files under that directory since the script will reset any changes.
    This means that all the files we modified before should be copied into this directory.
    
    usage:
    
    ```bash
    mkdir ~/.gradle-bisect-override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/Specs.java

    import java.util.Collection;
    import java.util.List;
    
    /**
     * This interface is copied and trimmed from org.gradle.api.specs.Spec because older versions of Tooling API have issues with
     * the original due to different versions of classes loaded.
     *
     */
    interface Spec<T> {
        boolean isSatisfiedBy(T element);
    }
    
    /**
     * This class is copied and trimmed from org.gradle.api.specs.Specs because older versions of Tooling API have issues with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                    }
                }
            }
    
            then:
            args("--refresh-dependencies")
            succeeds 'checkDeps'
        }
    
        def "copies selection rules when configuration is copied" () {
            buildFile << """
                configurations {
                    notCopy
                }
    
                dependencies {
                    conf "org.utils:api:1.+"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/destination_rule.go

    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    			mdr.rule = &copied
    			mdr.from = append(mdr.from, destRuleConfig.NamespacedName())
    			mergedRule := copied.Spec.(*networking.DestinationRule)
    
    			existingSubset := sets.String{}
    			for _, subset := range mergedRule.Subsets {
    				existingSubset.Insert(subset.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

        private AnsiConsoleUtil() {
        }
    
        /**
         * @see <a href="https://github.com/fusesource/jansi/blob/eeda18cb05122abe48b284dca969e2c060a0c009/jansi/src/main/java/org/fusesource/jansi/AnsiConsole.java#L48-L54">Method copied over from AnsiConsole.wrapOutputStream</a>
         */
        static OutputStream wrapOutputStream(final OutputStream stream) {
            try {
                return wrapOutputStream(stream, STDOUT_FILENO);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/io/io.go

    func ReadFull(r Reader, buf []byte) (n int, err error) {
    	return ReadAtLeast(r, buf, len(buf))
    }
    
    // CopyN copies n bytes (or until an error) from src to dst.
    // It returns the number of bytes copied and the earliest
    // error encountered while copying.
    // On return, written == n if and only if err == nil.
    //
    // If dst implements [ReaderFrom], the copy is implemented using it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/HashCode.java

          return hash == that.asLong();
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Creates a {@code HashCode} from a byte array. The array is defensively copied to preserve the
       * immutability contract of {@code HashCode}. The array cannot be empty.
       *
       * @since 15.0 (since 12.0 in HashCodes)
       */
      public static HashCode fromBytes(byte[] bytes) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * @return this
         */
        ContentFilterable filter(Transformer<@org.jetbrains.annotations.Nullable String, String> transformer);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. docs/batch-jobs/README.md

    ## Replication Job
    To perform replication via batch jobs, you create a job. The job consists of a job description YAML that describes
    
    - Source location from where the objects must be copied from
    - Target location from where the objects must be copied to
    - Fine grained filtering is available to pick relevant objects from source to copy from
    
    MinIO batch jobs framework also provides
    
    - Retrying a failed job automatically driven by user input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top