Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 351 for nothings (1.16 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.ir.txt

                  annotations:
                    MyComposable
                  BLOCK_BODY
                    RETURN type=kotlin.Nothing from='local final fun <anonymous> (): kotlin.Unit declared in <root>.ArticleScreenContent'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    type Recorder interface {
    	// Record records why a runtime.Object was changed in an annotation.
    	Record(runtime.Object) error
    	MakeRecordMergePatch(runtime.Object) ([]byte, error)
    }
    
    // NoopRecorder does nothing.  It is a "do nothing" that can be returned so code doesn't switch on it.
    type NoopRecorder struct{}
    
    // Record implements Recorder
    func (r NoopRecorder) Record(obj runtime.Object) error {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
            callableShortenStrategy: (KaCallableSymbol) -> ShortenStrategy,
        ): ShortenCommand {
            // Compiler implementation does nothing.
            // Descriptor-based shortening is implemented on the IDE plugin side.
            val ktFilePointer = SmartPointerManager.createPointer(file)
    
            return object : ShortenCommand {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/dependencies/implementation_linux_test.go

    // limitations under the License.
    
    package dependencies
    
    import (
    	"testing"
    
    	// Create a new network namespace. This will have the 'lo' interface ready but nothing else.
    	_ "github.com/howardjohn/unshare-go/netns"
    	// Create a new user namespace. This will map the current UID to 0.
    	_ "github.com/howardjohn/unshare-go/userns"
    	"github.com/vishvananda/netns"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 26 20:05:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/JvmUtil.java

    import java.util.regex.Pattern;
    
    public final class JvmUtil {
        private static final Pattern VERSION_PREFIX_PATTERN = Pattern.compile("([0-9]+)(\\-?):(.*)");
    
        private JvmUtil() {
            // nothing
        }
    
        public static String[] filterJvmOptions(final String[] values) {
            final int version = getJavaVersion();
            return Arrays.stream(values).map(s -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. ci/official/utilities/setup_docker.sh

    if [[ "$TFCI_DOCKER_PULL_ENABLE" == 1 ]]; then
      # Simple retry logic for docker-pull errors. Sleeps if a pull fails.
      # Pulling an already-pulled container image will finish instantly, so
      # repeating the command costs nothing.
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 15
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 30
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 60
      docker pull "$TFCI_DOCKER_IMAGE"
    fi 
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java

      public void testAddAll_supportedNothing() {
        assertFalse("addAll(nothing) should return false", collection.addAll(emptyCollection()));
        expectUnchanged();
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_ADD)
      public void testAddAll_unsupportedNothing() {
        try {
          assertFalse(
              "addAll(nothing) should return false or throw", collection.addAll(emptyCollection()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        override val string: KaType by cachedBuiltin(builtinTypes.stringType)
    
        override val unit: KaType by cachedBuiltin(builtinTypes.unitType)
        override val nothing: KaType by cachedBuiltin(builtinTypes.nothingType)
        override val any: KaType by cachedBuiltin(builtinTypes.anyType)
    
        override val throwable: KaType by cachedBuiltin(builtinTypes.throwableType)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/InitScriptHandlerTest.groovy

        def handler = new InitScriptHandler(processor, executor, resourceLoader)
    
        def setup() {
            _ * gradle.startParameter >> startParameter
        }
    
        def "does nothing when there are no init scripts"() {
            given:
            startParameter.allInitScripts >> []
    
            when:
            handler.executeScripts(gradle)
    
            then:
            0 * executor._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.ir.txt

                  annotations:
                    MyComposable
                  BLOCK_BODY
                    RETURN type=kotlin.Nothing from='local final fun <anonymous> (): kotlin.Unit declared in <root>.ArticleScreenContent'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top