Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 185 for NOR (0.09 sec)

  1. src/crypto/tls/tls.go

    	if config == nil || len(config.Certificates) == 0 &&
    		config.GetCertificate == nil && config.GetConfigForClient == nil {
    		return nil, errors.New("tls: neither Certificates, GetCertificate, nor GetConfigForClient set in Config")
    	}
    	l, err := net.Listen(network, laddr)
    	if err != nil {
    		return nil, err
    	}
    	return NewListener(l, config), nil
    }
    
    type timeoutError struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/io/io.go

    // input source, ReadAt may return either err == EOF or err == nil.
    //
    // If ReadAt is reading from an input source with a seek offset,
    // ReadAt should not affect nor be affected by the underlying
    // seek offset.
    //
    // Clients of ReadAt can execute parallel ReadAt calls on the
    // same input source.
    //
    // Implementations must not retain p.
    type ReaderAt interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * }
         * </pre>
         *
         * @param args The arguments used to configure the repository.
         * @return the added resolver
         * @throws org.gradle.api.InvalidUserDataException In the case neither rootDir nor rootDirs is specified of if both
         * are specified.
         */
        FlatDirectoryArtifactRepository flatDir(Map<String, ?> args);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    	"slices"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // generation contains all the trace data for a single
    // trace generation. It is purely data: it does not
    // track any parse state nor does it contain a cursor
    // into the generation.
    type generation struct {
    	gen        uint64
    	batches    map[ThreadID][]batch
    	cpuSamples []cpuSample
    	*evTable
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    					switch {
    					case xn:
    						// x is a defined type: nothing to do.
    					case yn:
    						// x is not a defined type and y is a defined type: select y.
    						u.set(px, y)
    					default:
    						// Neither x nor y are defined types.
    						if yc, _ := under(y).(*Chan); yc != nil && yc.dir != SendRecv {
    							// y is a directed channel type: select y.
    							u.set(px, y)
    						}
    					}
    				}
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Equivalence.java

       *       equivalent(x, z)} is also true (<i>transitive</i> property)
       * </ul>
       *
       * <p>Note that all calls to {@code equivalent(x, y)} are expected to return the same result as
       * long as neither {@code x} nor {@code y} is modified.
       */
      public final boolean equivalent(@CheckForNull T a, @CheckForNull T b) {
        if (a == b) {
          return true;
        }
        if (a == null || b == null) {
          return false;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/network.go

    	ranger    cidranger.Ranger
    	clusterID cluster.ID
    
    	gatewayResourceClient kclient.Informer[*v1beta1.Gateway]
    	meshNetworksWatcher   mesh.NetworksWatcher
    
    	// Network name for to be used when the meshNetworks fromRegistry nor network label on pod is specified
    	// This is defined by a topology.istio.io/network label on the system namespace.
    	network network.ID
    	// Network name for the registry as specified by the MeshNetworks configmap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/unsafe/unsafe.go

    // Converting a Pointer to a uintptr creates an integer value
    // with no pointer semantics.
    // Even if a uintptr holds the address of some object,
    // the garbage collector will not update that uintptr's value
    // if the object moves, nor will that uintptr keep the object
    // from being reclaimed.
    //
    // The remaining patterns enumerate the only valid conversions
    // from uintptr to Pointer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/embed/embed.go

    // containing the source file. The path separator is a forward slash, even on
    // Windows systems. Patterns may not contain ‘.’ or ‘..’ or empty path elements,
    // nor may they begin or end with a slash. To match everything in the current
    // directory, use ‘*’ instead of ‘.’. To allow for naming files with spaces in
    // their names, patterns can be written as Go double-quoted or back-quoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(cleanBar.fullPath, TaskOrderSpecs.any(generateBar.fullPath, clean.fullPath))
            }
        }
    
        def "a task that is neither a producer nor a destroyer can run concurrently with producer tasks"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def generateFoo = foo.task('generateFoo').outputs('build/foo').shouldBlock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top