Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,854 for sig2 (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.19.md

    - Fix errors when accessing Windows container stats for Dockershim ([#98510](https://github.com/kubernetes/kubernetes/pull/98510), [@jsturtevant](https://github.com/jsturtevant)) [SIG Node and Windows]
    - Fix: delete non existing disk issue ([#102083](https://github.com/kubernetes/kubernetes/pull/102083), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

    # Copied from https://github.com/kubernetes-sigs/mcs-api/blob/master/config/crd/multicluster.x-k8s.io_serviceimports.yaml
    # Copyright 2020 The Kubernetes Authors.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		// generate test functions
    		for _, r := range values {
    			// TODO: could also test constant on lhs.
    			sig := sigString(r)
    			for _, op := range operators {
    				// no need for go:noinline because the function is called indirectly
    				fmt.Fprintf(w, "func %v_%v_%v(x %v) bool { return x %v %v; }\n", op.name, sig, typ, typ, op.op, r.String())
    			}
    		}
    
    		// generate a table of test cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. go.mod

    	k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 // indirect
    	sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
    	sigs.k8s.io/kustomize/api v0.17.2 // indirect
    	sigs.k8s.io/kustomize/kustomize/v5 v5.4.2 // indirect
    	sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
    )
    
    replace (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	fn, ok := obj.(*types.Func)
    	if !ok {
    		return false
    	}
    	sig := fn.Type().(*types.Signature)
    	return sig.Params().Len() == 2 &&
    		sig.Results().Len() == 0 &&
    		analysisutil.IsNamedType(sig.Params().At(0).Type(), "fmt", "State") &&
    		types.Identical(sig.Params().At(1).Type(), types.Typ[types.Rune])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. src/cmd/internal/codesign/codesign.go

    	idOff := int64(codeDirectorySize)
    	hashOff := idOff + int64(len(id)+1)
    	cdirSz := hashOff + nhashes*notsha256.Size
    	return int64(superBlobSize+blobSize) + cdirSz
    }
    
    // Sign generates an ad-hoc code signature and writes it to out.
    // out must have length at least Size(codeSize, id).
    // data is the file content without the signature, of size codeSize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmContext.java

                    throw new CIFSException("Failed to encrypt MIC", e);
                }
            }
    
            byte[] sig = new byte[16];
            SMBUtil.writeInt4(1, sig, 0); // version
            System.arraycopy(trunc, 0, sig, 4, 8); // checksum
            SMBUtil.writeInt4(seqNum, sig, 12); // seqNum
    
            return sig;
        }
    
    
        @Override
        public void verifyMIC ( byte[] data, byte[] mic ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                        ivyRepo.deleteDir()
                    }
                }
                def sign = project.getProperty("sign")
                if (sign == 'skip') {
                    tasks.withType(Sign)*.onlyIf { false }
                } else {
                    tasks.withType(Sign)*.enabled = Boolean.parseBoolean(sign)
                }
    
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/math/bits.go

    	return f != f
    }
    
    // IsInf reports whether f is an infinity, according to sign.
    // If sign > 0, IsInf reports whether f is positive infinity.
    // If sign < 0, IsInf reports whether f is negative infinity.
    // If sign == 0, IsInf reports whether f is either infinity.
    func IsInf(f float64, sign int) bool {
    	// Test for infinity by comparing against maximum float.
    	// To avoid the floating-point hardware, could use:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningClosureBlockIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    sign {
                        sign(tasks.jar)
                    }
                }
            """
    
            when:
            run "sign"
    
            then:
            executedAndNotSkipped ":signJar"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
        }
    
        def "use kotlin action when signing"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top