Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for noIndex (2.2 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Burmese              Tag = Tag{language: myIndex, locale: myIndex}
    	Nepali               Tag = Tag{language: neIndex, locale: neIndex}
    	Dutch                Tag = Tag{language: nlIndex, locale: nlIndex}
    	Norwegian            Tag = Tag{language: noIndex, locale: noIndex}
    	Punjabi              Tag = Tag{language: paIndex, locale: paIndex}
    	Polish               Tag = Tag{language: plIndex, locale: plIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/MetadataDocinfoProcessor.java

     * attributes the pattern "meta_name-$NAME=$CONTENT" or
     * "meta_property-$PROPERTY=$CONTENT".
     *
     * For example the declaration ":meta-name-robots: noindex" would produce:
     * <meta name="robots" content="noindex">
     *
     * Underscores will be replaced with colons. ":meta-property-og_locale: en_US"
     * would produce <meta property="og:locale" content="en_US">
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    // limitations under the License.
    
    = Gradle User Manual: Version {gradleVersion}
    :description: Single-page Gradle User Manual for Gradle {gradleVersion}
    :meta-name-robots: noindex
    :meta-name-twitter_card: summary
    :meta-name-twitter_site: @gradle
    :meta-name-twitter_creator: @gradle
    :meta-name-twitter_title: Gradle User Manual: Version {gradleVersion}
    :meta-name-twitter_description: {description}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/SingletonImmutableList.java

      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
      public ImmutableList<E> subList(int fromIndex, int toIndex) {
        Preconditions.checkPositionIndexes(fromIndex, toIndex, 1);
        return (fromIndex == toIndex) ? ImmutableList.<E>of() : this;
      }
    
      @Override
      public String toString() {
        return '[' + element.toString() + ']';
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/GradleDistributionSpecs.kt

            if (relativePathLength == 0) this else this.parentFile.containingSubprojectFolder(relativePathLength - 1)
    
        private
        fun Array<String>.subArray(toIndex: Int) = listOf(*this).subList(0, toIndex).toTypedArray()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:35:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/net/interface.go

    	sync.RWMutex                // guard the following
    	lastFetched  time.Time      // last time routing information was fetched
    	toIndex      map[string]int // interface name to its index
    	toName       map[int]string // interface index to its name
    }
    
    var zoneCache = ipv6ZoneCache{
    	toIndex: make(map[string]int),
    	toName:  make(map[int]string),
    }
    
    // update refreshes the network interface information if the cache was last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/SignedBytes.java

       * exclusive in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(byte[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        Arrays.sort(array, fromIndex, toIndex);
        Bytes.reverse(array, fromIndex, toIndex);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    				if !matchNamespace(ns, c) {
    					m := msg.NewReferencedResourceNotFound(r, "namespace", ns)
    
    					nsIndex := k
    					if nsIndex >= len(from.Source.Namespaces) {
    						nsIndex -= len(from.Source.Namespaces)
    					}
    
    					if line, ok := util.ErrorLine(r, fmt.Sprintf(util.AuthorizationPolicyNameSpace, i, j, nsIndex)); ok {
    						m.Line = line
    					}
    
    					c.Report(gvk.AuthorizationPolicy, m)
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/SignedBytes.java

       * exclusive in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(byte[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        Arrays.sort(array, fromIndex, toIndex);
        Bytes.reverse(array, fromIndex, toIndex);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/index_test.go

    import (
    	"encoding/hex"
    	"encoding/json"
    	"go/build"
    	"internal/diff"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	isTest = true
    	enabled = true // to allow GODEBUG=goindex=0 go test, when things are very broken
    }
    
    func TestIndex(t *testing.T) {
    	src := filepath.Join(runtime.GOROOT(), "src")
    	checkPkg := func(t *testing.T, m *Module, pkg string, data []byte) {
    		p := m.Package(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top