Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,648 for nothings (0.18 sec)

  1. pkg/proxy/conntrack/conntrack_test.go

    		}
    
    		ct = makeCT(nothingToDelete)
    		if err := ct.ClearEntriesForIP(tc.ip, v1.ProtocolUDP); err != nil {
    			t.Errorf("%s/nothing to delete: Unexpected error: %v", tc.name, err)
    		}
    	}
    }
    
    func TestClearEntriesForPort(t *testing.T) {
    	testCases := []struct {
    		name   string
    		port   int
    		isIPv6 bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val UNIT: KaType
            get() = unit
    
        public abstract val nothing: KaType
    
        @Deprecated("Use 'nothing' instead.", replaceWith = ReplaceWith("nothing"))
        public val NOTHING: KaType
            get() = nothing
    
        public abstract val any: KaType
    
        @Deprecated("Use 'any' instead.", replaceWith = ReplaceWith("any"))
        public val ANY: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

    import static com.google.common.collect.ImmutableList.copyOf
    
    class IvyDependencyDescriptorTest extends ExternalDependencyDescriptorTest {
    
        private final static ExcludeSpec NOTHING = new ModuleExclusions().nothing()
    
        @Override
        ExternalDependencyDescriptor create(ModuleComponentSelector selector) {
            return new IvyDependencyDescriptor(selector, ImmutableListMultimap.of())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/runtime/fds_nonunix.go

    // Copyright 2023 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.
    
    //go:build !unix
    
    package runtime
    
    func checkfds() {
    	// Nothing to do on non-Unix platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 256 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:main.kt
        FUN name:Greeting visibility:public modality:FINAL <> () returnType:kotlin.String
          annotations:
            MyComposable
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun Greeting (): kotlin.String declared in <root>'
              STRING_CONCATENATION type=kotlin.String
                CONST String type=kotlin.String value="Hi "
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 580 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

       *
       * <p>By default this method does nothing.
       */
      // TODO: consider supporting a TearDownTestCase-like API
      protected void shutDown() throws Exception {}
    
      /**
       * Invoked to request the service to stop.
       *
       * <p>By default this method does nothing.
       *
       * <p>Currently, this method is invoked while holding a lock. If an implementation of this method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

         */
        @Input
        @Deprecated
        public boolean isUploadDescriptor() {
            return false;
        }
    
        /**
         * Do not use this method, it does nothing.
         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
         */
        @Deprecated
        @SuppressWarnings("UnusedDeclaration")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/net/internal/cgotest/empty_test.go

    // Copyright 2023 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.
    
    package cgotest
    
    import "testing"
    
    // Nothing to test here.
    // The test is that the package compiles at all.
    // See resstate.go.
    func Test(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 317 bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-clean-plugin 0.1 clean false true clean Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/dist/buildruntime.go

    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package sys\n")
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top