Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for yield (0.57 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/link/internal/ld/data.go

    	}
    }
    
    // Return whether we may need to split text sections.
    //
    // On PPC64x, when external linking, a text section should not be
    // larger than 2^25 bytes due to the size of call target offset field
    // in the 'bl' instruction. Splitting into smaller text sections
    // smaller than this limit allows the system linker to modify the long
    // calls appropriately. The limit allows for the space needed for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    }
    
    function check-network-mode() {
      local mode
      mode=$(gcloud compute networks list --filter="name=('${NETWORK}')" --project "${NETWORK_PROJECT}" --format='value(x_gcloud_subnet_mode)' || true)
      # The deprecated field uses lower case. Convert to upper case for consistency.
      echo "$mode" | tr '[:lower:]' '[:upper:]'
    }
    
    function create-network() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    // on the generated side
    //  - the type of the top-level expression is the same as the one on the left-hand side.
    //  - the type of any subexpressions must be specified explicitly (or
    //    be specified in the op's type field).
    //  - auxint will be 0 if not specified.
    //  - aux will be nil if not specified.
    
    // blocks are specified using the following format:
    // (kind controlvalue succ0 succ1 ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    		if err != nil {
    			t.Fatalf("Failed to create new streaming signed HTTP request: <ERROR> %v.", err)
    		}
    		switch test.fault {
    		case BadSignature:
    			// Reset date field in header to make streaming signature fail.
    			req.Header.Set("x-amz-date", "")
    		case TooBigDecodedLength:
    			// Set decoded length to a large value out of int64 range to simulate parse failure.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    					},
    				},
    			},
    		},
    		"when the JobSuccessPolicy is disabled, the Job never got SuccessCriteriaMet condition even if the Job has the successPolicy field": {
    			job: batch.Job{
    				TypeMeta:   validTypeMeta,
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       validSelector,
    					Template:       validTemplate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top