Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for sub32a (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/encoding/xml/xml.go

    	"otimes":   "\u2297",
    	"perp":     "\u22A5",
    	"sdot":     "\u22C5",
    	"lceil":    "\u2308",
    	"rceil":    "\u2309",
    	"lfloor":   "\u230A",
    	"rfloor":   "\u230B",
    	"lang":     "\u2329",
    	"rang":     "\u232A",
    	"loz":      "\u25CA",
    	"spades":   "\u2660",
    	"clubs":    "\u2663",
    	"hearts":   "\u2665",
    	"diams":    "\u2666",
    	"quot":     "\u0022",
    	"amp":      "\u0026",
    	"lt":       "\u003C",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top