Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for dup2 (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

    import org.gradle.kotlin.dsl.support.bytecode.ARETURN
    import org.gradle.kotlin.dsl.support.bytecode.ASTORE
    import org.gradle.kotlin.dsl.support.bytecode.CHECKCAST
    import org.gradle.kotlin.dsl.support.bytecode.DUP
    import org.gradle.kotlin.dsl.support.bytecode.GETSTATIC
    import org.gradle.kotlin.dsl.support.bytecode.ICONST_0
    import org.gradle.kotlin.dsl.support.bytecode.INVOKEINTERFACE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

          Set<K> seen = new HashSet<>();
          BitSet dups = new BitSet(); // slots that are overridden by a later duplicate key
          for (int i = size - 1; i >= 0; i--) {
            if (!seen.add(entries[i].getKey())) {
              dups.set(i);
            }
          }
          if (dups.isEmpty()) {
            return null;
          }
          @SuppressWarnings({"rawtypes", "unchecked"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. common/Makefile.common.mk

    lint-links:
    	@${FINDFILES} -name '*.md' -print0 | ${XARGS} awesome_bot --skip-save-results --allow_ssl --allow-timeout --allow-dupe --allow-redirect --white-list ${MARKDOWN_LINT_ALLOWLIST}
    
    lint-sass:
    	@${FINDFILES} -name '*.scss' -print0 | ${XARGS} sass-lint -c common/config/sass-lint.yml --verbose
    
    lint-typescript:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/syscall/exec_unix.go

    //   - [Socket]. Use SOCK_CLOEXEC if available. Otherwise, does not
    //     block, so use ForkLock.
    //   - [Open]. Use [O_CLOEXEC] if available. Otherwise, may block,
    //     so live with the race.
    //   - [Dup]. Use [F_DUPFD_CLOEXEC] or dup3 if available. Otherwise,
    //     does not block, so use ForkLock.
    var ForkLock sync.RWMutex
    
    // StringSlicePtr converts a slice of strings to a slice of pointers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs.go

    	upgradeTo := make(map[string]string, len(upgrade))
    	for _, u := range upgrade {
    		if !pathInList[u.Path] {
    			list = append(list, module.Version{Path: u.Path, Version: "none"})
    		}
    		if prev, dup := upgradeTo[u.Path]; dup {
    			upgradeTo[u.Path] = reqs.Max(u.Path, prev, u.Version)
    		} else {
    			upgradeTo[u.Path] = u.Version
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    			emptyMatchEncountered = rulen
    			continue
    		}
    
    		duplicateMatches := 0
    		for matchn, match := range route.Match {
    			dupn, ok := matchesEncountered[asJSON(match)]
    			if ok {
    				reportIneffective(routeName(route, rulen), requestName(match, matchn), routeName(routes[dupn], dupn))
    				duplicateMatches++
    				// no need to handle for totally duplicated match rules
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/net/tcpsock_posix.go

    }
    
    func (ln *TCPListener) close() error {
    	return ln.fd.Close()
    }
    
    func (ln *TCPListener) file() (*os.File, error) {
    	f, err := ln.fd.dup()
    	if err != nil {
    		return nil, err
    	}
    	return f, nil
    }
    
    func (sl *sysListener) listenTCP(ctx context.Context, laddr *TCPAddr) (*TCPListener, error) {
    	return sl.listenTCPProto(ctx, laddr, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. hack/tools/go.mod

    	github.com/gobwas/glob v0.2.3 // indirect
    	github.com/gofrs/flock v0.8.1 // indirect
    	github.com/golang/protobuf v1.5.3 // indirect
    	github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect
    	github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
    	github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe // indirect
    	github.com/golangci/gofmt v0.0.0-20231018234816-f50ced29576e // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Removexattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_Dup3Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Dup3(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_DirfdAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Dirfd(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top