Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for ulong (0.06 sec)

  1. cmd/admin-handlers-users.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"os"
    	"sort"
    	"strconv"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    						CertFile: "/cluster-signing-legacy-unknown/cert-file",
    						KeyFile:  "",
    					},
    				},
    			},
    		},
    		{
    			name:                   "CSRSigningControllerOptions specific file set along with cluster single signing file",
    			expectErrors:           true,
    			expectedErrorSubString: "cannot specify --cluster-signing-{cert,key}-file and other --cluster-signing-*-file flags at the same time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        //
                        // At this point the DefaultModelBuildingListener has fired and it populates the
                        // remote repositories with those found in the pom.xml, along with the existing externally
                        // defined repositories.
                        //
                        request.setRemoteRepositories(project.getRemoteArtifactRepositories());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		t.Fatalf("Open(%q) failed: %v", from, err)
    	}
    	file.Close()
    }
    
    func TestLongSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	defer chtmpdir(t)()
    	s := "0123456789abcdef"
    	// Long, but not too long: a common limit is 255.
    	s = s + s + s + s + s + s + s + s + s + s + s + s + s + s + s
    	from := "longsymlinktestfrom"
    	err := Symlink(s, from)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		}
    	}
    	return 0
    }
    
    // nextFree returns the next free object from the cached span if one is available.
    // Otherwise it refills the cache with a span with an available object and
    // returns that object along with a flag indicating that this was a heavy
    // weight allocation. If it is a heavy weight allocation the caller must
    // determine whether a new GC cycle needs to be started or if the GC is active
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // linear proportion to the allocation cost. Adjusting GOGC just changes the linear constant
    // (and also the amount of extra memory used).
    
    // Oblets
    //
    // In order to prevent long pauses while scanning large objects and to
    // improve parallelism, the garbage collector breaks up scan jobs for
    // objects larger than maxObletBytes into "oblets" of at most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Does the same for the `myNullableProperty` project property, but the build won't fail on using the `myNullableProperty` value as long as you check for null (standard https://kotlinlang.org/docs/reference/null-safety.html[Kotlin rules for null safety] apply)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              return forward_pass_ops.contains(use.getOwner());
            });
      }
    
      VLOG(3) << "Cloned " << cloned_inputs << " TPUReplicatedInputOps";
    
      // Add TPUReplicatedInput/TPUReplicatedOutput pairs along each edge.
      llvm::SetVector<Operation*> new_forward_ops;
      for (Operation* op : forward_pass_ops) {
        // TODO(bfontain): Should validate that all the TPU ops are in the same
        // replication region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedCalcCost: 1887437,
    			setMaxElements:   5,
    			expectedSetCost:  17,
    		},
    		// all array-of-array tests should have the same expected cost along the same expression,
    		// since arrays-of-arrays are serialized the same in minimized form regardless of item type
    		// of the subarray ([[], [], ...])
    		{
    			name:             "array of number arrays with all",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top