Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for fieldsV1 (0.29 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    			istio := md.FilterMetadata[util.IstioMetadataKey]
    			g.Expect(istio.Fields["config"]).NotTo(BeNil())
    			dr := istio.Fields["config"]
    			g.Expect(dr.GetStringValue()).To(Equal("/apis/networking.istio.io/v1alpha3/namespaces//destination-rule/acme"))
    			if strings.Contains(cluster.Name, "Subset") {
    				foundSubset = true
    				sub := istio.Fields["subset"]
    				g.Expect(sub.GetStringValue()).To(HavePrefix("Subset "))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		DefaultByteStringType: reflect.TypeOf(""),
    
    		// Allow CBOR byte strings to be decoded into string destination values.
    		ByteStringToString: cbor.ByteStringToStringAllowed,
    
    		// Allow CBOR byte strings to match struct fields when appearing as a map key.
    		FieldNameByteString: cbor.FieldNameByteStringAllowed,
    
    		// When decoding an unrecognized tag to interface{}, return the decoded tag content
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
           * non-final fields need to be reloaded inside the loop.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
           * non-final fields need to be reloaded inside the loop.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphEdge.java

    import org.gradle.internal.component.model.DependencyMetadata;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ResolvedGraphDependency} that is used during the resolution of the dependency graph.
     * Additional fields in this interface are not required to reconstitute the serialized graph, but are using during construction of the graph.
     */
    public interface DependencyGraphEdge extends ResolvedGraphDependency {
        DependencyGraphNode getFrom();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	// Required to pass fuzzer tests. This ClusterConfiguration is empty and is never defaulted.
    	// If we call Convert_v1beta3_ClusterConfiguration_To_kubeadm_ClusterConfiguration() these fields will receive
    	// a default value, thus here we need to reset them back to empty.
    	out.EncryptionAlgorithm = ""
    	out.CertificateValidityPeriod = nil
    	out.CACertificateValidityPeriod = nil
    	// Set default timeouts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		cfg.Body = &otlpcommon.AnyValue{
    			Value: &otlpcommon.AnyValue_StringValue{
    				StringValue: format,
    			},
    		}
    	}
    
    	if labels != nil && len(labels.Fields) != 0 {
    		cfg.Attributes = &otlpcommon.KeyValueList{
    			Values: ConvertStructToAttributeKeyValues(labels.Fields),
    		}
    	}
    
    	// it's unnecessary to check proxy version here,
    	// users should add CEL/METADATA/REQ_WITHOUT_QUERY commands after all proxy upgraded to 1.23+.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    	// If this fails, that means new fields have been added to FilterChainMatch, filterChainMatchEqual function needs to be updated.
    	if e.NumField() != 14 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			}
    		})
    	}
    }
    
    func TestCacheIntervalNextFromStore(t *testing.T) {
    	getAttrsFunc := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    		pod, ok := obj.(*v1.Pod)
    		if !ok {
    			return nil, nil, fmt.Errorf("not a pod")
    		}
    		return labels.Set(pod.Labels), fields.Set{"spec.nodeName": pod.Spec.NodeName}, nil
    	}
    	const numEvents = 50
    	store := cache.NewIndexer(storeElementKey, storeElementIndexers(nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.cc

                              SP_ALLOCATORSTATS_STRUCT_SIZE);
      // All other fields could theoretically be zero/null.
      return absl::OkStatus();
    }
    
    absl::Status ValidateSPDeviceMemoryBase(const SP_DeviceMemoryBase& mem) {
      TF_VALIDATE_STRUCT_SIZE(SP_DeviceMemoryBase, mem,
                              SP_DEVICE_MEMORY_BASE_STRUCT_SIZE);
      // All other fields could theoretically be zero/null.
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top