Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 975 for myHost (0.15 sec)

  1. src/math/big/natconv.go

    						ch, err = r.ReadByte()
    					}
    				}
    			}
    		}
    	}
    
    	// convert string
    	// Algorithm: Collect digits in groups of at most n digits in di
    	// and then use mulAddWW for every such group to add them to the
    	// result.
    	z = z[:0]
    	b1 := Word(b)
    	bn, n := maxPow(b1) // at most n digits in base b1 fit into Word
    	di := Word(0)       // 0 <= di < b1**i < bn
    	i := 0              // 0 <= i < n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    A list of all inputs to the computed build cache key can be found in the <<build_cache.adoc#sec:task_output_caching_details,section on cacheable tasks>>.
    
    From most coarse grained to most fine grained, the items we will use to compare two tasks are:
    
    * Build cache keys
    * Task and Task action implementations
    ** classloader hash
    ** class name
    * Task output property names
    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/bufio/bufio.go

    		}
    		b.fill() // buffer is empty
    	}
    	c := b.buf[b.r]
    	b.r++
    	b.lastByte = int(c)
    	return c, nil
    }
    
    // UnreadByte unreads the last byte. Only the most recently read byte can be unread.
    //
    // UnreadByte returns an error if the most recent method called on the
    // [Reader] was not a read operation. Notably, [Reader.Peek], [Reader.Discard], and [Reader.WriteTo] are not
    // considered read operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  4. pkg/apis/apps/types.go

    	// This cannot be 0 if MaxSurge is 0
    	// Default value is 1.
    	// Example: when this is set to 30%, at most 30% of the total number of nodes
    	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
    	// can have their pods stopped for an update at any given time. The update
    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    		return Base{tag.LangID}, c
    	}
    	return Base{0}, No
    }
    
    // Script infers the script for the language tag. If it was not explicitly given, it will infer
    // a most likely candidate.
    // If more than one script is commonly used for a language, the most likely one
    // is returned with a low confidence indication. For example, it returns (Cyrl, Low)
    // for Serbian.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/archive/tar/format.go

    	formatV7
    
    	// FormatUSTAR represents the USTAR header format defined in POSIX.1-1988.
    	//
    	// While this format is compatible with most tar readers,
    	// the format has several limitations making it unsuitable for some usages.
    	// Most notably, it cannot support sparse files, files larger than 8GiB,
    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. docs/hu/docs/index.md

    * A `/items/{item_id}` _útvonalnak_ még van egy opcionális, `str` típusú _query paramétere_ is, a `q`.
    
    ### Interaktív API dokumentáció
    
    Most nyisd meg a <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> címet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // it must be named "go.mod", not any other case. Files named "go.mod"
    // are not allowed in any other directory.
    //
    // • The total size in bytes of a module zip file may be at most [MaxZipFile]
    // bytes (500 MiB). The total uncompressed size of the files within the
    // zip may also be at most [MaxZipFile] bytes.
    //
    // • Each file's uncompressed size must match its declared 64-bit uncompressed
    // size in the zip file header.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

         * @return List list of methods
         */
        List<Method> get(String key) {
            return methodByNameMap.get(key);
        }
    
        /**
         * Find a method.  Attempts to find the
         * most specific applicable method using the
         * algorithm described in the JLS section
         * 15.12.2 (with the exception that it can't
         * distinguish a primitive type argument from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
Back to top