Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for modcap (0.11 sec)

  1. src/cmd/go/internal/modfetch/fetch.go

    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/par"
    	"cmd/go/internal/robustio"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/sumdb/dirhash"
    	modzip "golang.org/x/mod/zip"
    )
    
    var downloadCache par.ErrCache[module.Version, string] // version → directory
    
    var ErrToolchain = errors.New("internal error: invalid operation on toolchain module")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/download.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modcmd
    
    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"os"
    	"runtime"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modfetch/codehost"
    	"cmd/go/internal/modload"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    	re.longest = true
    }
    
    func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) {
    	re, err := syntax.Parse(expr, mode)
    	if err != nil {
    		return nil, err
    	}
    	maxCap := re.MaxCap()
    	capNames := re.CapNames()
    
    	re = re.Simplify()
    	prog, err := syntax.Compile(re)
    	if err != nil {
    		return nil, err
    	}
    	matchcap := prog.NumCap
    	if matchcap < 2 {
    		matchcap = 2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/vendor.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modcmd
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"go/build"
    	"io"
    	"io/fs"
    	"os"
    	"path"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    						mp[mode][metricName] = override
    					}
    				}
    			}
    		}
    	}
    
    	processed := map[string]metricsConfig{}
    	for provider, modeMap := range providers {
    		tmm := processed[provider]
    		tmm.ReportingInterval = reportingIntervals[provider]
    
    		for mode, metricMap := range modeMap {
    			key := metricProviderModeKey(provider, mode)
    			if disabledAllMetricsProviders.Contains(key) {
    				switch mode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          // Ops that should always use the MLIR legalization.
          TypeID::get<TF::FusedBatchNormV3Op>(),
          TypeID::get<TF::FusedBatchNormGradV3Op>(),
          TypeID::get<TF::XlaReduceScatterOp>(),
          TypeID::get<TF::ModOp>(),
    
          // MatrixDiagPartV3 should use the MLIR implementation due to performance.
          TypeID::get<TF::MatrixDiagPartV3Op>(),
    
          // Ops that are legalized in the old bridge using MlirXlaOpKernel
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_arm.go

    	SYS_CAP_GETRIGHTS            = 515 // { int cap_getrights(int fd, \
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/edit.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // go mod edit
    
    package modcmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"os"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modload"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_MUNLOCKALL           = 243 // { int|sys||munlockall(void); }
    	SYS_SIGQUEUEINFO         = 245 // { int|sys||sigqueueinfo(pid_t pid, const siginfo_t *info); }
    	SYS_MODCTL               = 246 // { int|sys||modctl(int cmd, void *arg); }
    	SYS___POSIX_RENAME       = 270 // { int|sys||__posix_rename(const char *from, const char *to); }
    	SYS_SWAPCTL              = 271 // { int|sys||swapctl(int cmd, void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_386.go

    	SYS_CAP_GETRIGHTS            = 515 // { int cap_getrights(int fd, \
    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top