Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,365 for replaced (0.54 sec)

  1. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

            // don't compareAndSet a zero
            if (map.replace(key, atomic, new AtomicLong(newValue))) {
              return 0L;
            }
            // atomic replaced
            continue;
          }
    
          return oldValue;
        }
      }
    
      /**
       * If {@code (key, expectedOldValue)} is currently in the map, this method replaces {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. common/config/.golangci-format.yml

      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
      # "/" will be replaced by current OS file path separator to properly work on Windows.
      # Default: []
      exclude-dirs:
        - genfiles$
        - vendor$
      # Which files to exclude: they will be analyzed, but issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/SECURITY_CONTACTS

    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    # INSTRUCTIONS AT https://kubernetes.io/security/
    
    cjcullen
    joelsmith
    liggitt
    philips
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 09:52:35 UTC 2019
    - 563 bytes
    - Viewed (0)
  4. releasenotes/notes/remove-istio-io-rev-label.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33447
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 211 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_insecure_redirect.txt

    # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
    # golang.org/issue/61877: 'go get' would panic in case of an insecure redirect in module mode
    
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    ! go get -d vcs-test.golang.org/insecure/go/insecure
    stderr 'redirected .* to insecure URL'
    
    [short] stop 'builds a git repo'
    
    env GOINSECURE=vcs-test.golang.org/insecure/go/insecure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:25 UTC 2023
    - 538 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/idl/groovy/src/main/idl/hello.idl

    This file contains a HEADER section and a SOURCE section, which are parsed to generate the actual header and source files.
    The generated files have the same name as the idl file, with the extension replaced by '.h' or '.c'.
    
    HEADER <<<
    void hello();
    >>>
    --------------
    SOURCE <<<
    #include <stdio.h>
    #include "hello.h"
    
    void hello () {
      printf("Hello from generated source!!\n");
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_import_meta.txt

    ! stderr 'internal error'
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    # Not even if such a path is theoretically provided by a (necessarily replaced) module.
    
    go mod edit -replace std@v0.1.0=./modstd
    go mod edit -require std@v0.1.0
    
    ! go list -deps ./importstd
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/line.go

    	prefix, replace := rewrite, ""
    	if j := strings.LastIndex(rewrite, "=>"); j >= 0 {
    		prefix, replace = rewrite[:j], rewrite[j+len("=>"):]
    	}
    
    	if prefix == "" || !hasPathPrefix(path, prefix) {
    		return path, false
    	}
    	if len(path) == len(prefix) {
    		return replace, true
    	}
    	if replace == "" {
    		return path[len(prefix)+1:], true
    	}
    	return replace + path[len(prefix):], true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/doc.go

    /*
    Package atomic provides atomic operations, independent of sync/atomic,
    to the runtime.
    
    On most platforms, the compiler is aware of the functions defined
    in this package, and they're replaced with platform-specific intrinsics.
    On other platforms, generic implementations are made available.
    
    Unless otherwise noted, operations defined in this package are sequentially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 771 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Module replacement rules allow a build to declare that a legacy library has been replaced by a new one.
    A good example when a new library replaced a legacy one is the `google-collections` -&gt; `guava` migration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top