Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 526 for REJECT (0.62 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                                 selection.reject("only use milestones for someModule:testing")
     *                             }
     *                         }
     *                     }
     *                     withModule("org.sample:api") { ComponentSelection selection ->
     *                         if (selection.candidate.version == "1.1") {
     *                             selection.reject("known bad version")
     *                         }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. releasenotes/notes/45489.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    issue:
      - 45338
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 198 bytes
    - Viewed (0)
  3. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/invalid11.toml

    [libraries]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 72 bytes
    - Viewed (0)
  4. src/crypto/tls/bogo_config.json

            "TLS-ECH-Client-Reject-EarlyDataRejected": "We don't support switiching out ECH configs with this level of granularity",
    
            "TLS-ECH-Client-NoNPN": "We don't support NPN",
    
            "TLS-ECH-Client-ChannelID": "We don't support sending channel ID",
            "TLS-ECH-Client-Reject-NoChannelID-TLS13": "We don't support sending channel ID",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                            all { ComponentSelection selection ->
                                if (selection.getDescriptor(IvyModuleDescriptor) != null) {
                                    selection.reject("rejecting all ivy modules")
                                }
                            }
                        }
                    }
                }
    
                task retrieve(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_cache_dir.txt

    env GO111MODULE=on
    
    # Go should reject relative paths in GOMODCACHE environment.
    
    env GOMODCACHE="~/test"
    ! go install example.com/tools/cmd/hello@latest
    stderr 'must be absolute path'
    
    env GOMODCACHE="./test"
    ! go install example.com/tools/cmd/hello@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 289 bytes
    - Viewed (0)
  7. releasenotes/notes/access-log-service-crash.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 30939
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 19 05:25:55 UTC 2021
    - 182 bytes
    - Viewed (0)
  8. hack/verify-netparse-cve.sh

        \) -name '*.go'
    }
    
    # find files using net.ParseIP()
    netparseip_matches=$(find_files | xargs grep -nE "net.ParseIP\(.*\)" 2>/dev/null) || true
    if [[ -n "${netparseip_matches}" ]]; then
      echo "net.ParseIP reject leading zeros in the dot-decimal notation of IPv4 addresses since golang 1.17:" >&2
      echo "${netparseip_matches}" >&2
      echo >&2
      echo "Use k8s.io/utils/net ParseIPSloppy() to parse IP addresses. Kubernetes #100895" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4264.go

    // errorcheck
    
    // Copyright 2013 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.
    
    // issue 4264: reject int division by const 0
    
    package main
    
    func main() {
    	var x int
    	var y float64
    	var z complex128
    
    	println(x/0) // ERROR "division by zero"
    	println(y/0)
    	println(z/0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 366 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// nil					reject
    	// builtin				reject
    	// pkgname				reject
    	// label				reject
    	// var
    	//    package-level			accept
    	//    func param/result			accept
    	//    local				reject
    	//    struct field			accept
    	// const
    	//    package-level			accept
    	//    local				reject
    	// func
    	//    package-level			accept
    	//    init functions			reject
    	//    concrete method			accept
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top