Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 944 for sig2 (0.04 sec)

  1. tests/integration/pilot/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	"sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/signing/tasks/groovy/build.gradle

    project.ext['signing.password'] = 'gradle'
    project.ext['signing.secretKeyRingFile'] = file('secKeyRingFile.gpg').absolutePath
    
    // tag::sign-task[]
    tasks.register('stuffZip', Zip) {
        archiveBaseName = 'stuff'
        from 'src/stuff'
    }
    
    signing {
        sign stuffZip
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 405 bytes
    - Viewed (0)
  3. tests/integration/ambient/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	gwfeatures "sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningDistributionsIntegrationSpec.groovy

            when:
            run "buildSignatures"
    
            then:
            executedAndNotSkipped ":signArchives"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "libs", "sign-1.0-javadoc.jar.asc").text
            file("build", "libs", "sign-1.0-sources.jar.asc").text
            file("build", "distributions", "main-1.0.zip.asc").text
            file("build", "distributions", "main-1.0.tar.asc").text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa_s390x.s

    	BLT  error       // condition code of 1 indicates a failure
    
    success:
    	MOVD $0, errn+16(FP) // return 0 - sign/verify was successful
    	RET
    
    error:
    	MOVD $1, errn+16(FP) // return 1 - sign/verify failed
    	RET
    
    retry:
    	MOVD $2, errn+16(FP) // return 2 - sign/verify was unsuccessful -- if sign, retry with new RN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 891 bytes
    - Viewed (0)
  6. src/math/big/intconv.go

    		return
    	}
    
    	if x == nil {
    		fmt.Fprint(s, "<nil>")
    		return
    	}
    
    	// determine sign character
    	sign := ""
    	switch {
    	case x.neg:
    		sign = "-"
    	case s.Flag('+'): // supersedes ' ' when both specified
    		sign = "+"
    	case s.Flag(' '):
    		sign = " "
    	}
    
    	// determine prefix characters for indicating output base
    	prefix := ""
    	if s.Flag('#') {
    		switch ch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. pkg/cmd/cmd.go

    func WaitSignal(stop chan struct{}) {
    	sigs := make(chan os.Signal, 1)
    	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
    	<-sigs
    	close(stop)
    	_ = log.Sync()
    }
    
    // WaitSignalFunc awaits for SIGINT or SIGTERM and calls the cancel function
    func WaitSignalFunc(cancel func()) {
    	sigs := make(chan os.Signal, 1)
    	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
    	<-sigs
    	cancel()
    	_ = log.Sync()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/ToDoubleRounder.java

       * or the least double greater than or equal to the precise value of x.
       */
      abstract double roundToDoubleArbitrarily(X x);
    
      /** Returns the sign of x: either -1, 0, or 1. */
      abstract int sign(X x);
    
      /** Returns d's value as an X, rounded with the specified mode. */
      abstract X toX(double d, RoundingMode mode);
    
      /** Returns a - b, guaranteed that both arguments are nonnegative. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    The [Kubernetes community repo](https://github.com/kubernetes/community) contains information about how to get started, how the community organizes, and more.
    
    ## Sign the CLA
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 525 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/configurations/groovy/build.gradle

    project['signing.keyId'] = "24875D73"
    project['signing.password'] = "gradle"
    project['signing.secretKeyRingFile'] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign configurations.runtimeElements
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 484 bytes
    - Viewed (0)
Back to top