Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for growing (0.16 sec)

  1. src/image/draw/draw_test.go

    							continue loop
    						}
    					}
    				}
    			}
    		}
    	}
    }
    
    // TestNonZeroSrcPt checks drawing with a non-zero src point parameter.
    func TestNonZeroSrcPt(t *testing.T) {
    	a := image.NewRGBA(image.Rect(0, 0, 1, 1))
    	b := image.NewRGBA(image.Rect(0, 0, 2, 2))
    	b.Set(0, 0, color.RGBA{0, 0, 0, 5})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/sql-databases-peewee.md

    ## The same app
    
    We are going to create the same application as in the SQLAlchemy tutorial ([SQL (Relational) Databases](../tutorial/sql-databases.md){.internal-link target=_blank}).
    
    Most of the code is actually the same.
    
    So, we are going to focus only on the differences.
    
    ## File structure
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Other tasks
    -----------
    helloTask - Hello task
    ----
    
    In contrast, `./gradlew tasks --all` will show all tasks; _hidden_ and _visible_ tasks are listed.
    
    [[sec:grouping_tasks]]
    == Grouping tasks
    
    If you want to customize which tasks are shown to users when listed, you can group tasks and set the visibility of each group.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/term/terminal.go

    		return keyPasteEnd, b[6:]
    	}
    
    	// If we get here then we have a key that we don't recognise, or a
    	// partial sequence. It's not clear how one should find the end of a
    	// sequence without knowing them all, but it seems that [a-zA-Z~] only
    	// appears at the end of a sequence.
    	for i, c := range b[0:] {
    		if c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c == '~' {
    			return keyUnknown, b[i+1:]
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

     *
     * <p>One common use of this class is to determine whether a given string is likely to represent an
     * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
     * {@code "http://xxx/"} result in a webpage being displayed? In the past, this test was frequently
     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InternetDomainName.java

     *
     * <p>One common use of this class is to determine whether a given string is likely to represent an
     * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
     * {@code "http://xxx/"} result in a webpage being displayed? In the past, this test was frequently
     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/match.go

    			return true
    		}
    	}
    	return false
    }
    
    // regionGroupDist computes the distance between two regions based on their
    // CLDR grouping.
    func regionGroupDist(a, b language.Region, script language.Script, lang language.Language) (dist uint8, same bool) {
    	const defaultDistance = 4
    
    	aGroup := uint(regionToGroups[a]) << 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
                      allowed to contain alphanumerics, -, _ and /. String literals are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  9. cmd/metacache-set.go

    	// Transient is set if the cache is transient due to an error or being a reserved bucket.
    	// This means the cache metadata will not be persisted on disk.
    	// A transient result will never be returned from the cache so knowing the list id is required.
    	Transient bool
    
    	// Versioned is this a ListObjectVersions call.
    	Versioned bool
    	// V1 listing type
    	V1 bool
    
    	// Versioning config is used for if the path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      return success();
    }
    
    // Forms clusters with ops of the same `_replication_info` attribute under a
    // block.
    //
    // For a given block, clusters are formed via grouping ops by
    // `_replication_info` attributes. For every cluster formed:
    //   1. Find associated TPUReplicateMetadata attributes with the same
    //      `_replication_info` attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
Back to top