Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 785 for sig2 (0.23 sec)

  1. pkg/kubelet/cm/node_container_manager_linux.go

    		if cm.NodeConfig.SystemReserved != nil {
    			value.Sub(cm.NodeConfig.SystemReserved[k])
    		}
    		if cm.NodeConfig.KubeReserved != nil {
    			value.Sub(cm.NodeConfig.KubeReserved[k])
    		}
    		if value.Sign() < 0 {
    			// Negative Allocatable resources don't make sense.
    			value.Set(0)
    		}
    		result[k] = value
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/crypto/rsa/pkcs1v15.go

    // channels, or if an attacker has control of part of the inputs.
    func VerifyPKCS1v15(pub *PublicKey, hash crypto.Hash, hashed []byte, sig []byte) error {
    	if boring.Enabled {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return err
    		}
    		if err := boring.VerifyRSAPKCS1v15(bkey, hash, hashed, sig); err != nil {
    			return ErrVerification
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0EB3          ; mapped                 ; 0ECD 0EB2     # 1.1  LAO VOWEL SIGN AM
    0EB4..0EB9    ; valid                                  # 1.1  LAO VOWEL SIGN I..LAO VOWEL SIGN UU
    0EBA          ; valid                                  # 12.0 LAO SIGN PALI VIRAMA
    0EBB..0EBD    ; valid                                  # 1.1  LAO VOWEL SIGN MAI KON..LAO SEMIVOWEL SIGN NYO
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  4. src/runtime/sigqueue.go

    						sigNoteSleep(&sig.note)
    						break Receive
    					}
    					notetsleepg(&sig.note, -1)
    					noteclear(&sig.note)
    					break Receive
    				}
    			case sigSending:
    				if sig.state.CompareAndSwap(sigSending, sigIdle) {
    					break Receive
    				}
    			}
    		}
    
    		// Incorporate updates from sender into local copy.
    		for i := range sig.mask {
    			sig.recv[i] = atomic.Xchg(&sig.mask[i], 0)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/build.sh

    # Builds the following Docker images for Linux ARM64. See the accompanying
    # Dockerfile for more details:
    # - gcr.io/tensorflow-sigs/build-arm64:jax-latest-multi-python
    # - gcr.io/tensorflow-sigs/build-arm64:tf-latest-multi-python
    
    set -exo pipefail
    
    function is_continuous_or_release() {
      [[ "$KOKORO_JOB_TYPE" == "CONTINUOUS_INTEGRATION" ]] || [[ "$KOKORO_JOB_TYPE" == "RELEASE" ]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. OWNERS_ALIASES

        - liggitt
        - mikedanese
      # SIG Release
      release-engineering-approvers:
        - cpanato # SIG Technical Lead / RelEng subproject owner / Release Manager
        - jeremyrickard # SIG Chair / RelEng subproject owner / Release Manager
        - justaugustus # SIG Chair / RelEng subproject owner / Release Manager
        - puerco # SIG Technical Lead / RelEng subproject owner / Release Manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/go.mod

    	k8s.io/apimachinery v0.0.0
    	k8s.io/client-go v0.0.0
    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b
    	sigs.k8s.io/kustomize/api v0.17.2
    	sigs.k8s.io/kustomize/kyaml v0.17.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/FormatSupport.java

                // This is a workaround for https://github.com/gradle/gradle-private/issues/1690
                return new BigDecimal(0);
            }
    
            double sign = Math.signum(getDifferencePercentage(baseline, current).doubleValue());
            return new BigDecimal(sign * 100.0 * confidenceInDifference(baseline.getTotalTime(), current.getTotalTime())).setScale(2, RoundingMode.HALF_UP);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

        /** MINUS SIGN */
        public static final char MINUS_SIGN = '\u2212';
    
        /** FULLWIDTH HYPHEN-MINUS */
        public static final char FULLWIDTH_HYPHEN_MINUS = '\uFF0D';
    
        /** CENT SIGN */
        public static final char CENT_SIGN = '\u00A2';
    
        /** FULLWIDTH CENT SIGN */
        public static final char FULLWIDTH_CENT_SIGN = '\uFFE0';
    
        /** POUND SIGN */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    	if sig == _SIGPROF {
    		return
    	}
    
    	t := &sigtable[sig]
    	if t.flags&_SigNotify != 0 {
    		ensureSigM()
    		enableSigChan <- sig
    		<-maskUpdatedChan
    		if atomic.Cas(&handlingSig[sig], 0, 1) {
    			atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
    			setsig(sig, abi.FuncPCABIInternal(sighandler))
    		}
    	}
    }
    
    // sigdisable disables the Go signal handler for the signal sig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top