Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 629 for copiedS (0.09 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    			break
    		}
    		pkg = path.Dir(pkg)
    		dst = filepath.Dir(dst)
    		src = filepath.Dir(src)
    	}
    }
    
    // metaPrefixes is the list of metadata file prefixes.
    // Vendoring copies metadata files from parents of copied directories.
    // Note that this list could be arbitrarily extended, and it is longer
    // in other tools (such as godep or dep). By using this limited set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/types.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package atomic
    
    import "unsafe"
    
    // Int32 is an atomically accessed int32 value.
    //
    // An Int32 must not be copied.
    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            then:
            succeeds("showBuildscript")
            // A jar coming from some file repo is copied into the transformation cache and served from there.
            inArtifactTransformCache("test-1.3-BUILD-SNAPSHOT.jar")
            // A jar coming from remote repo is cached in the global modules cache and served from there.
            // It isn't copied into the transformation cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/ByteSource.java

        while ((skipped = skipUpTo(in, Integer.MAX_VALUE)) > 0) {
          count += skipped;
        }
        return count;
      }
    
      /**
       * Copies the contents of this byte source to the given {@code OutputStream}. Does not close
       * {@code output}.
       *
       * @return the number of bytes copied
       * @throws IOException if an I/O error occurs while reading from this source or writing to {@code
       *     output}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            _ * globalDependencySubstitutions.ruleAction >> Actions.doNothing()
    
            then: //user rules follow:
            1 * substitutionAction.execute(details)
            0 * details._
        }
    
        def "copied instance does not share state"() {
            when:
            def copy = strategy.copy()
    
            then:
            1 * cachePolicy.copy() >> Mock(DefaultCachePolicy)
            !copy.is(strategy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/net/sendfile_test.go

    		// in expectSendfile.
    		_, err = io.CopyN(conn, r, 1)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		// Signal the main goroutine that we've copied the byte.
    		close(copied)
    	}()
    
    	wg.Add(1)
    	go func() {
    		// Write 1 byte to the write end of the pipe.
    		defer wg.Done()
    		_, err := w.Write([]byte{'a'})
    		if err != nil {
    			t.Error(err)
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top