Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 245 for Negate (0.13 sec)

  1. src/index/suffixarray/sais2.go

    	// Cache recently used bucket index.
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j <= 0 {
    			// Skip empty or negated entry (including negated zero).
    			continue
    		}
    
    		// Index j was on work queue, meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    		// If k-1 is L-type, queue k for processing later in this loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtPredicates.kt

        public val type: KaType get() = withValidityAssertion { backingType }
        public val isNegated: Boolean get() = withValidityAssertion { backingIsNegated }
        public fun negated(): KaContractIsInstancePredicateExpression = KaContractIsInstancePredicateExpression(argument, type, !isNegated)
    
        override fun hashCode(): Int = Objects.hashCode(backingArgument, backingType, backingIsNegated)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    		if matched && !decided {
    			klog.V(5).Infof("%q %s %q did not match any rule", pkg, relate(imp), imp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/expiration.go

    		return errLifecycleDateNotMidnight
    	}
    
    	*eDate = ExpirationDate{expDate}
    	return nil
    }
    
    // MarshalXML encodes expiration date if it is non-zero and encodes
    // empty string otherwise
    func (eDate ExpirationDate) MarshalXML(e *xml.Encoder, startElement xml.StartElement) error {
    	if eDate.Time.IsZero() {
    		return nil
    	}
    	return e.EncodeElement(eDate.Format(time.RFC3339), startElement)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/path/filepath/match.go

    			// character class
    			var r rune
    			if !failed {
    				var n int
    				r, n = utf8.DecodeRuneInString(s)
    				s = s[n:]
    			}
    			chunk = chunk[1:]
    			// possibly negated
    			negated := false
    			if len(chunk) > 0 && chunk[0] == '^' {
    				negated = true
    				chunk = chunk[1:]
    			}
    			// parse all ranges
    			match := false
    			nrange := 0
    			for {
    				if len(chunk) > 0 && chunk[0] == ']' && nrange > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		}
    		var opcode uint32
    		switch p.As {
    		case ABRCT:
    			opcode = op_BRCT
    		case ABRCTG:
    			opcode = op_BRCTG
    		}
    		zRI(opcode, uint32(r1), uint32(ri2), asm)
    
    	case 47: // negate [reg] reg
    		r := p.From.Reg
    		if r == 0 {
    			r = p.To.Reg
    		}
    		switch p.As {
    		case ANEG:
    			zRRE(op_LCGR, uint32(p.To.Reg), uint32(r), asm)
    		case ANEGW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/validation_test.go

    		},
    		{
    			name:         "service cidr IPv4 is too big but gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("10.0.0.0/8", ""),
    			gate:         true,
    		},
    		{
    			name:         "service cidr IPv6 is too big but gate enbled",
    			expectErrors: false,
    			options:      makeOptionsWithCIDRs("2001:db8::/64", ""),
    			gate:         true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

        /**
         * Creates a resolvable + dependency scope configuration which can change roles.
         *
         * @deprecated Whether concept of a resolvable + dependency scope configuration should exist
         * is still under debate. However, in general, we should try to split up configurations which
         * have this role into separate resolvable and dependency scope configurations.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    		resource2     = "example2.com/resource2"
    	)
    	testCases := []struct {
    		description          string
    		gate                 bool
    		responsesPerResource map[string]*pluginapi.ContainerAllocateResponse
    		expected             *DeviceRunContainerOptions
    	}{
    		{
    			description: "empty response",
    			gate:        false,
    			responsesPerResource: map[string]*pluginapi.ContainerAllocateResponse{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types_test.go

    		expectedResult EncryptionAlgorithmType
    	}{
    		{
    			name: "feature gate is set to true, return ECDSA-P256",
    			cfg: &ClusterConfiguration{
    				FeatureGates: map[string]bool{
    					features.PublicKeysECDSA: true,
    				},
    				EncryptionAlgorithm: EncryptionAlgorithmRSA4096,
    			},
    			expectedResult: EncryptionAlgorithmECDSAP256,
    		},
    		{
    			name: "feature gate is set to false, return the default RSA-2048",
    			cfg: &ClusterConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 09:39:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top