Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,692 for Tvalue (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values.go

    Jiahui Feng <******@****.***> 1675738611 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/ledger/trie_cache.go

    func (b *byteCache) Set(key hash, value [][]byte) {
    	b.cache.Set(key, value)
    }
    
    // Get retrieves the value associated with the supplied key if the key
    // is present in the cache.
    func (b *byteCache) Get(key hash) (value [][]byte, ok bool) {
    	ivalue, ok := b.cache.Get(key)
    	if ok {
    		value, _ = ivalue.([][]byte)
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                        text = text.trim();
                    }
                    value = value != null ? value + text : text;
                } else if (eventType == XmlPullParser.END_TAG) {
                    return new XmlNodeImpl(
                            name,
                            children == null ? (value != null ? value : emptyTag ? null : "") : null,
                            attrs,
                            children,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/syscall/bpf_bsd.go

    func FlushBpf(fd int) error {
    	err := ioctlPtr(fd, BIOCFLUSH, nil)
    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    type ivalue struct {
    	name  [IFNAMSIZ]byte
    	value int16
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfInterface(fd int, name string) (string, error) {
    	var iv ivalue
    	err := ioctlPtr(fd, BIOCGETIF, unsafe.Pointer(&iv))
    	if err != nil {
    		return "", err
    	}
    	return name, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

                    it.id("id", "shortProblemMessage")
                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData("aKey", "aValue")
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
    
            when:
    
            def problems = runTask()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    	default:
    		return false
    	}
    }
    
    func zeroValue(value reflect.Value) bool {
    	return reflect.DeepEqual(reflect.Zero(value.Type()).Interface(), value.Interface())
    }
    
    func customMarshalValue(value reflect.Value) (reflect.Value, bool) {
    	// Return unless we implement a custom query marshaler
    	if !value.CanInterface() {
    		return reflect.Value{}, false
    	}
    
    	marshaler, ok := value.Interface().(Marshaler)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	f.addSymbol(aux)
    
    	currSymSrcFile.csectAux = aux
    	currSymSrcFile.csectVAStart = int64(firstEntry)
    	currSymSrcFile.csectVAEnd = int64(firstEntry)
    }
    
    // Update values for the previous package.
    //   - Svalue of the C_FILE symbol: if it is the last one, this Svalue must be -1
    //   - Xsclen of the csect symbol.
    func (f *xcoffFile) updatePreviousFile(ctxt *Link, last bool) {
    	// first file
    	if currSymSrcFile.file == nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. samples/ambient-argo/tag-chart/values.yaml

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. clause/values.go

    		builder.WriteString(" VALUES ")
    
    		for idx, value := range values.Values {
    			if idx > 0 {
    				builder.WriteByte(',')
    			}
    
    			builder.WriteByte('(')
    			builder.AddVar(builder, value...)
    			builder.WriteByte(')')
    		}
    	} else {
    		builder.WriteString("DEFAULT VALUES")
    	}
    }
    
    // MergeClause merge values clauses
    func (values Values) MergeClause(clause *Clause) {
    	clause.Name = ""
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun May 24 03:35:19 UTC 2020
    - 849 bytes
    - Viewed (0)
  10. manifests/charts/gateway/values.yaml

      # minimum number of available replicas to 1, you can update this value as follows:
      #
      # podDisruptionBudget:
      #   minAvailable: 1
      #
      # Or, to allow a maximum of 1 unavailable replica, you can set:
      #
      # podDisruptionBudget:
      #   maxUnavailable: 1
      #
      # You can also specify the `unhealthyPodEvictionPolicy` field, and the valid values are `IfHealthyBudget` and `AlwaysAllow`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top