Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 104 for toGetter (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * group related tasks together when presenting a list of tasks to the user.
         *
         * @return The task group for this task. Might be null.
         */
        @Internal
        @Nullable
        String getGroup();
    
        /**
         * Sets the task group which this task belongs to. The task group is used in reports and user interfaces to
         * group related tasks together when presenting a list of tasks to the user.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. chainable_api.go

    		tx.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.Not(conds...)}})
    	}
    	return
    }
    
    // Or add OR conditions
    //
    // Or is used to chain together queries with an OR.
    //
    //	// Find the first user with name equal to jinzhu or john
    //	db.Where("name = ?", "jinzhu").Or("name = ?", "john").First(&user)
    func (db *DB) Or(query interface{}, args ...interface{}) (tx *DB) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/encoding/csv/reader.go

    					break parseField
    				}
    			}
    		}
    	}
    	if err == nil {
    		err = errRead
    	}
    
    	// Create a single string and create slices out of it.
    	// This pins the memory of the fields together, but allocates once.
    	str := string(r.recordBuffer) // Convert to string once to batch allocations
    	dst = dst[:0]
    	if cap(dst) < len(r.fieldIndexes) {
    		dst = make([]string, len(r.fieldIndexes))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			[]string{"all"},
    			[]string{"all"},
    			sets.New("all"),
    			false,
    		},
    		{ // non-duplicate, but 'all' present together with individual checks in CLI
    			[]string{"a", "b", "all"},
    			[]string{},
    			sets.New[string](),
    			true,
    		},
    		{ // non-duplicate, but 'all' present together with individual checks in config file
    			[]string{},
    			[]string{"a", "b", "all"},
    			sets.New[string](),
    			true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    	APIServerServicePort int
    
    	// TODO, we can probably group service related items into a substruct to make it easier to configure
    	// the API server items and `Extra*` fields likely fit nicely together.
    
    	// The range of ports to be assigned to services with type=NodePort or greater
    	ServiceNodePortRange utilnet.PortRange
    	// If non-zero, the "kubernetes" services uses this port as NodePort.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                    remove(file)
                }
    
                addAll(dependencyFiles)
                add(file)
            }
    
            // Files in the code fragment context module are compiled together with the code fragment itself.
            val targetModules = computeTargetModules(mainFirFile.llFirModuleData.ktModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  7. src/runtime/map_test.go

    			continue
    		} // ignore entries added to grow table
    		cnt++
    		if math.Copysign(1.0, k.x) < 0 {
    			if v&16 == 0 {
    				t.Error("key/value not updated together 1")
    			}
    			negcnt++
    			s |= v & 15
    		} else {
    			if v&16 == 16 {
    				t.Error("key/value not updated together 2", k, v)
    			}
    			s |= v
    		}
    		if growflag {
    			// force a hashtable resize
    			for i := 0; i < 100; i++ {
    				m[FloatInt{3.0, i}] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    So, you would run **multiple containers** with different things, like a database, a Python application, a web server with a React frontend application, and connect them together via their internal network.
    
    All the container management systems (like Docker or Kubernetes) have these networking features integrated into them.
    
    ## Containers and Processes
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/slices/slices.go

    // Delete panics if j > len(s) or s[i:j] is not a valid slice of s.
    // Delete is O(len(s)-i), so if many items must be deleted, it is better to
    // make a single call deleting them all together than to delete one at a time.
    // Delete zeroes the elements s[len(s)-(j-i):len(s)].
    func Delete[S ~[]E, E any](s S, i, j int) S {
    	_ = s[i:j:len(s)] // bounds check
    
    	if i == j {
    		return s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //===----------------------------------------------------------------------===//
    // Binary op patterns.
    //===----------------------------------------------------------------------===//
    
    // Check that two values can be broadcasted together
    def AreBroadcastCompatible : Constraint<CPred<"AreBroadcastCompatible($0, $1)">,
        "types must be broadcastable">;
    
    class DirectBinaryPat<Op FromOp, Op ToOp>
      : Pat<(FromOp AnyTensor:$l, AnyTensor:$r),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top