Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,128 for continues (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    	Context interface{}
    }
    
    // scope contains information about an ongoing conversion.
    type scope struct {
    	converter *Converter
    	meta      *Meta
    }
    
    // Convert continues a conversion.
    func (s *scope) Convert(src, dest interface{}) error {
    	return s.converter.Convert(src, dest, s.meta)
    }
    
    // Meta returns the meta object that was originally passed to Convert.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       Future} is "completed" even if it is cancelled while its underlying work continues on a
     *       thread, an RPC, etc. The {@code Future} is also "completed" if it fails "early" -- for
     *       example, if the deadline expires on a {@code Future} returned from {@link
     *       Futures#withTimeout} while the {@code Future} it wraps continues its underlying work. So
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. src/internal/diff/diff.go

    		// the chunk includes all the common lines and continues.
    		const C = 3 // number of context lines
    		if (end.x < len(x) || end.y < len(y)) &&
    			(end.x-start.x < C || (len(ctext) > 0 && end.x-start.x < 2*C)) {
    			for _, s := range x[start.x:end.x] {
    				ctext = append(ctext, " "+s)
    				count.x++
    				count.y++
    			}
    			done = end
    			continue
    		}
    
    		// End chunk with common lines for context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            then:
            thrown BuildCacheException
            writer.writeCount == 0
        }
    
        def "does transmit body when using expect continue that continues"() {
            given:
            config.useExpectContinue = true
    
            and:
            def content = "abc".bytes
            def writer = writer(content)
            def destFile = tempDir.file("cached.zip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/const0.go

    		)
    		var z [iota]int                           // [2]int
    		_ = unsafe.Sizeof([2]int{} == z)          // assert types are equal
    	})
    	three = iota // the sequence continues
    )
    var _ [three]int = [3]int{} // assert 'three' has correct value
    
    var (
    	_ = iota /* ERROR "iota outside constant decl" */
    	_ = unsafe.Sizeof(iota  /* ERROR "iota outside constant decl" */ )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       Future} is "completed" even if it is cancelled while its underlying work continues on a
     *       thread, an RPC, etc. The {@code Future} is also "completed" if it fails "early" -- for
     *       example, if the deadline expires on a {@code Future} returned from {@link
     *       Futures#withTimeout} while the {@code Future} it wraps continues its underlying work. So
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

        }
    
        def "can fetch buildscript classpath for sub-project script of nested project outside nested project root"() {
    
            when:
            // This use-case was never supported and continues not to be supported
            assertCanFetchClassPathForSubProjectScriptOfNestedProjectOutsideProjectRoot("nested-project")
    
            then:
            thrown(AssertionError)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for treating interruptible operations as uninterruptible. In all cases, if a thread is
     * interrupted during such a call, the call continues to block until the result is available or the
     * timeout elapses, and only then re-interrupts the thread.
     *
     * @author Anthony Zana
     * @since 10.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  9. src/sync/poolqueue.go

    	//
    	// tail = index of oldest data in queue
    	// head = index of next slot to fill
    	//
    	// Slots in the range [tail, head) are owned by consumers.
    	// A consumer continues to own a slot outside this range until
    	// it nils the slot, at which point ownership passes to the
    	// producer.
    	//
    	// The head index is stored in the most-significant bits so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            dependency.groupId == "org.jetbrains.kotlinx"
            dependency.artifactId == "kotlinx-coroutines-core-jvm"
            dependency.version == "1.7.2"
    
            // GMM continues to use component coordinates
            def gmmDependencies = repoModule.parsedModuleMetadata.variant("runtimeElements").dependencies
            gmmDependencies.size() == 1
            def gmmDependency = gmmDependencies.first()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
Back to top