Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for sub32a (0.13 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testGetSubtype_recursiveTypeBoundInSubtypeTranslatedAsIs() {
        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction.go

    type podUpdateItem struct {
    	podName      string
    	podNamespace string
    	nodeName     string
    }
    
    func hash(val string, max int) int {
    	hasher := fnv.New32a()
    	io.WriteString(hasher, val)
    	return int(hasher.Sum32() % uint32(max))
    }
    
    // GetPodsByNodeNameFunc returns the list of pods assigned to the specified node.
    type GetPodsByNodeNameFunc func(nodeName string) ([]*v1.Pod, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/image/png/writer.go

    	e.header[4] = name[0]
    	e.header[5] = name[1]
    	e.header[6] = name[2]
    	e.header[7] = name[3]
    	crc := crc32.NewIEEE()
    	crc.Write(e.header[4:8])
    	crc.Write(b)
    	binary.BigEndian.PutUint32(e.footer[:4], crc.Sum32())
    
    	_, e.err = e.w.Write(e.header[:8])
    	if e.err != nil {
    		return
    	}
    	_, e.err = e.w.Write(b)
    	if e.err != nil {
    		return
    	}
    	_, e.err = e.w.Write(e.footer[:4])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. docs/config/README.md

    export MINIO_DOMAIN=mydomain.com
    minio server /data
    ```
    
    For advanced use cases `MINIO_DOMAIN` environment variable supports multiple-domains with comma separated values.
    
    ```sh
    export MINIO_DOMAIN=sub1.mydomain.com,sub2.mydomain.com
    minio server /data
    ```
    
    ## Explore Further
    
    * [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    We will walk you through the process of diagnosing a cache miss.
    Let's say we have build `A` and build `B` and we expected all the test tasks for a sub-project `sub1` to be cached in build `B` since only a unit test for another sub-project `sub2` changed.
    Instead, all the tests for the sub-project have been executed.
    Since we have the cascading effect when we have cache misses, we need to find the task which caused the caching chain to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

            entities.put("rceil", "\u2309");
            entities.put("lfloor", "\u230a");
            entities.put("rfloor", "\u230b");
            entities.put("lang", "\u2329");
            entities.put("rang", "\u232a");
            entities.put("loz", "\u25ca");
            entities.put("spades", "\u2660");
            entities.put("clubs", "\u2663");
            entities.put("hearts", "\u2665");
            entities.put("diams", "\u2666");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

            entities.put("rceil", "\u2309");
            entities.put("lfloor", "\u230a");
            entities.put("rfloor", "\u230b");
            entities.put("lang", "\u2329");
            entities.put("rang", "\u232a");
            entities.put("loz", "\u25ca");
            entities.put("spades", "\u2660");
            entities.put("clubs", "\u2663");
            entities.put("hearts", "\u2665");
            entities.put("diams", "\u2666");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. src/image/png/reader.go

    	}
    	return d.verifyChecksum()
    }
    
    func (d *decoder) verifyChecksum() error {
    	if _, err := io.ReadFull(d.r, d.tmp[:4]); err != nil {
    		return err
    	}
    	if binary.BigEndian.Uint32(d.tmp[:4]) != d.crc.Sum32() {
    		return FormatError("invalid checksum")
    	}
    	return nil
    }
    
    func (d *decoder) checkHeader() error {
    	_, err := io.ReadFull(d.r, d.tmp[:len(pngHeader)])
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils.go

    		binary.LittleEndian.PutUint32(collisionCountBytes, uint32(*collisionCount))
    		podTemplateSpecHasher.Write(collisionCountBytes)
    	}
    
    	return rand.SafeEncodeString(fmt.Sprint(podTemplateSpecHasher.Sum32()))
    }
    
    func AddOrUpdateLabelsOnNode(kubeClient clientset.Interface, nodeName string, labelsToUpdate map[string]string) error {
    	firstTry := true
    	return clientretry.RetryOnConflict(UpdateLabelBackoff, func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // and will not run on earlier targets.
    //
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add64F ...) => (FADD ...)
    (Add32F ...) => (FADDS ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub32F ...) => (FSUBS ...)
    (Sub64F ...) => (FSUB ...)
    
    (Min(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMINJDP x y)
    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top