Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 346 for north (0.08 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

    }
    
    LogicalResult CreateTflFusableOpCustomOptions(
        ArrayRef<std::pair<StringRef, Attribute>> attrs, OpBuilder* builder,
        std::string& custom_option_buffer) {
      // There is something worth noting in the ordering of the custom op option:
      // At the MLIR level, all the option is ordered alphabetcially, so there is
      // no way for us to retrieve the original order, so please make sure you are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    	_ sys.NotInHeap
    	workbufhdr
    	next *stackWorkBuf // linked list of workbufs
    	// Note: we could theoretically repurpose lfnode.next as this next pointer.
    	// It would save 1 word, but that probably isn't worth busting open
    	// the lfnode API.
    }
    
    // Buffer for stack objects found on a goroutine stack.
    // Must be smaller than or equal to workbuf.
    type stackObjectBuf struct {
    	_ sys.NotInHeap
    	stackObjectBufHdr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

         * individual modules on the classpath, so we need a way to declare that we prefer to use
         * the individual jars instead.
         *
         * It's worth mentioning that the _consumer_ must, in this case, make sure that all the features
         * actually used in the fatjar version are replaced with their appropriate module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

        /**
         * Flattens a collection of elements that are going to be joined or intersected. There
         * are 3 possible outcomes:
         * - null means that the fast exit condition was reached, meaning that the caller knows it's not worth computing more
         * - empty list meaning that an easy simplification was reached and we directly know the result
         * - flattened unions/intersections
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
         * We will still use the readXxxWireFormat return values to
         * indicate how many bytes(note: readParameterWordsWireFormat
         * returns bytes read and not the number of words(but the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  6. src/runtime/mpagealloc.go

    	// exception to this rule is that it may take on the value of
    	// maxOffAddr to indicate that the heap is exhausted.
    	//
    	// We guarantee that all valid heap addresses below this value
    	// are allocated and not worth searching.
    	searchAddr offAddr
    
    	// start and end represent the chunk indices
    	// which pageAlloc knows about. It assumes
    	// chunks in the range [start, end) are
    	// currently ready to use.
    	start, end chunkIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute.go

    		// After the v1.X.0 release, latest-1.X.txt is always a beta.0 version. Let's say the latest stable version on the v1.7 branch is v1.7.3, then the
    		// latest-1.7 version is v1.7.4-beta.0
    
    		// Worth noticing is that when the release-1.X branch is cut; there are two versions tagged: v1.X.0-beta.0 AND v1.(X+1).alpha.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Equivalence.java

      public final <S extends @Nullable T> Equivalence<Iterable<S>> pairwise() {
        // Ideally, the returned equivalence would support Iterable<? extends T>. However,
        // the need for this is so rare that it's not worth making callers deal with the ugly wildcard.
        return new PairwiseEquivalence<>(this);
      }
    
      /**
       * Returns a predicate that evaluates to true if and only if the input is equivalent to {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

            return none();
          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/https.md

    You would probably do this just once, the first time, when setting everything up.
    
    !!! tip
        This Domain Name part is way before HTTPS, but as everything depends on the domain and the IP address, it's worth mentioning it here.
    
    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    First, the browser would check with the **DNS servers** what is the **IP for the domain**, in this case, `someapp.example.com`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top