Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for Yield (0.12 sec)

  1. src/crypto/x509/verify_test.go

    		roots:       []string{invalidCNRoot},
    		currentTime: 1540000000,
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate relies on legacy Common Name field"),
    	},
    	{
    		// A certificate with an AKID should still chain to a parent without SKID.
    		// See Issue 30079.
    		name:        "AKIDNoSKID",
    		leaf:        leafWithAKID,
    		roots:       []string{rootWithoutSKID},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    									// TODO: Change this to &tc.CPUTarget and the expected ScaleLimited
    									//       condition to False. This test incorrectly leaves the v1
    									//       HPA field TargetCPUUtilizization field blank and the
    									//       controller defaults to a target of 80. So the test relies
    									//       on downscale stabilization to prevent a scale change.
    									AverageUtilization: &eighty,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	op_VFS    uint32 = 0xE7E2 // 	VRR-c	VECTOR FP SUBTRACT
    	op_VFTCI  uint32 = 0xE74A // 	VRI-e	VECTOR FP TEST DATA CLASS IMMEDIATE
    	op_VGFM   uint32 = 0xE7B4 // 	VRR-c	VECTOR GALOIS FIELD MULTIPLY SUM
    	op_VGFMA  uint32 = 0xE7BC // 	VRR-d	VECTOR GALOIS FIELD MULTIPLY SUM AND ACCUMULATE
    	op_VGEF   uint32 = 0xE713 // 	VRV	VECTOR GATHER ELEMENT (32)
    	op_VGEG   uint32 = 0xE712 // 	VRV	VECTOR GATHER ELEMENT (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    owable); public void ReflectorException(String, Throwable); } org/codehaus/plexus/util/ReflectionUtils.class package org.codehaus.plexus.util; public final synchronized class ReflectionUtils { private void ReflectionUtils(); public static reflect.Field getFieldByNameInclud(String, Class); public static reflect.Method getSetter(String, Class); } org/codehaus/plexus/util/SelectorUtils.class package org.codehaus.plexus.util; public final synchronized class SelectorUtils { private static SelectorUtils...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    				t.Errorf("Could not unmarshal destination rule: %v", err)
    			}
    			ca := dr.TrafficPolicy.Tls.CaCertificates
    			if ca != tt.expectedCaCertificateName {
    				t.Errorf("%v: got unexpected caCertitifcates field. Expected (%v), received (%v)", tt.name, tt.expectedCaCertificateName, ca)
    			}
    		})
    	}
    }
    
    func TestApplyTCPKeepalive(t *testing.T) {
    	cases := []struct {
    		name           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    		new := []metav1.OwnerReference{{UID: "2"}, {UID: "3"}}
    		referencesDiffs(old, new)
    	}
    }
    
    // TestDependentsRace relies on golang's data race detector to check if there is
    // data race among in the dependents field.
    func TestDependentsRace(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    
    	gc := setupGC(t, &restclient.Config{})
    	defer close(gc.stop)
    
    	const updates = 100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                               ? builder_.CreateString(op_name)
                               : BufferOffset<flatbuffers::String>();
        // Use version 0 for builtin op. This is a way to serialize version field to
        // flatbuffer (since 0 is non default) and it will be corrected later.
        int32_t op_version = builtin != tflite::BuiltinOperator_CUSTOM ? 0 : 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    			},
    			template: &RevocationList{
    				ThisUpdate: time.Time{}.Add(time.Hour * 24),
    				NextUpdate: time.Time{}.Add(time.Hour * 48),
    			},
    			expectedError: "x509: template contains nil Number field",
    		},
    		{
    			name: "long Number",
    			key:  ec256Priv,
    			issuer: &Certificate{
    				KeyUsage: KeyUsageCRLSign,
    				Subject: pkix.Name{
    					CommonName: "testing",
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    // Name returns the name or alias of the column.
    func (ci *ColumnType) Name() string {
    	return ci.name
    }
    
    // Length returns the column type length for variable length column types such
    // as text and binary field types. If the type length is unbounded the value will
    // be [math.MaxInt64] (any database limits will still apply).
    // If the column type is not variable length, such as an int, or if not supported
    // by the driver ok is false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. cmd/server_test.go

    	// The reason to duplicate this structure here is to verify if the
    	// unmarshalling works from a client perspective, specifically
    	// while unmarshalling time.Time type for 'Initiated' field.
    	// time.Time does not honor xml marshaller, it means that we need
    	// to encode/format it before giving it to xml marshaling.
    
    	// This below check adds client side verification to see if its
    	// truly parsable.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top