Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for gint (0.03 sec)

  1. common/config/.golangci.yml

        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
        # if it's called for subdir of a project it can't find external interfaces. All text editor integrations
        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/security/first-steps.md

        Und es ist wahrscheinlich auch für die meisten anderen Anwendungsfälle die beste, es sei denn, Sie sind ein OAuth2-Experte und wissen genau, warum es eine andere Option gibt, die Ihren Anforderungen besser entspricht.
    
        In dem Fall gibt Ihnen **FastAPI** ebenfalls die Tools, die Sie zum Erstellen brauchen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

                String hint = "must be a number between 1 and 65535";
                int port = 0;
                try {
                    port = Integer.parseInt(value);
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, hint);
                }
                if (port < 1 || port > 65535) {
                    origin.handleInvalidValue(value, hint);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		return fmt.Errorf("invalid toolchain name %q", name)
    	}
    	if f.Toolchain == nil {
    		var hint Expr
    		if f.Go != nil && f.Go.Syntax != nil {
    			hint = f.Go.Syntax
    		} else if f.Module != nil && f.Module.Syntax != nil {
    			hint = f.Module.Syntax
    		}
    		f.Toolchain = &Toolchain{
    			Name:   name,
    			Syntax: f.Syntax.addLine(hint, "toolchain", name),
    		}
    	} else {
    		f.Toolchain.Name = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. hack/tools/go.mod

    go 1.21
    
    require (
    	github.com/aojea/sloppy-netparser v0.0.0-20210819225411-1b3bd8b3b975
    	github.com/cespare/prettybench v0.0.0-20150116022406-03b8cfe5406c
    	github.com/client9/misspell v0.3.4
    	github.com/golangci/golangci-lint v1.56.2
    	github.com/jcchavezs/porto v0.6.0
    	go.uber.org/automaxprocs v1.5.2
    	go.uber.org/mock v0.4.0
    	gotest.tools/gotestsum v1.6.4
    	honnef.co/go/tools v0.4.6
    	sigs.k8s.io/logtools v0.8.1
    )
    
    require (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/GcFinalization.java

     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
     * finalization to happen. However, a call to {@code System.gc()} is specified to be no more than a
     * hint, so this technique may fail at the whim of the JDK implementation, for example if a user
     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/runtime/heapdump.go

    	dumpstr(description)
    	dumpint(uint64(uintptr(to)))
    }
    
    func dumpfinalizer(obj unsafe.Pointer, fn *funcval, fint *_type, ot *ptrtype) {
    	dumpint(tagFinalizer)
    	dumpint(uint64(uintptr(obj)))
    	dumpint(uint64(uintptr(unsafe.Pointer(fn))))
    	dumpint(uint64(uintptr(unsafe.Pointer(fn.fn))))
    	dumpint(uint64(uintptr(unsafe.Pointer(fint))))
    	dumpint(uint64(uintptr(unsafe.Pointer(ot))))
    }
    
    type childInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/encoding/binary/binary.go

    		e.bool(v.Bool())
    
    	case reflect.Int8:
    		e.int8(int8(v.Int()))
    	case reflect.Int16:
    		e.int16(int16(v.Int()))
    	case reflect.Int32:
    		e.int32(int32(v.Int()))
    	case reflect.Int64:
    		e.int64(v.Int())
    
    	case reflect.Uint8:
    		e.uint8(uint8(v.Uint()))
    	case reflect.Uint16:
    		e.uint16(uint16(v.Uint()))
    	case reflect.Uint32:
    		e.uint32(uint32(v.Uint()))
    	case reflect.Uint64:
    		e.uint64(v.Uint())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    		m := make(map[int]int, 8)
    		m[0] = 0
    	})
    	if n != 0 {
    		t.Fatalf("with small hint: want 0 allocs, got %v", n)
    	}
    	n = testing.AllocsPerRun(1000, func() {
    		m := make(map[int]int, testNonEscapingMapVariable)
    		m[0] = 0
    	})
    	if n != 0 {
    		t.Fatalf("with variable hint: want 0 allocs, got %v", n)
    	}
    
    }
    
    func benchmarkMapAssignInt32(b *testing.B, n int) {
    	a := make(map[int32]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

          // go/keep-sorted start
          TF::ConstOp,
          TF::IdentityOp,
          TF::PartitionedCallOp,
          TF::StatefulPartitionedCallOp
          // go/keep-sorted end
          // clang-format on
          >(op);
    }
    
    // LINT.IfChange
    // The list of quantizable ops in the Legacy Integer mode.
    ABSL_ATTRIBUTE_NOINLINE const std::set<std::string>
        &QuantizableOpsInLegacyMode() {
      static const std::set<std::string> *legacy_op_list =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top