Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Iflag (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation"
            },
            "served": {
              "description": "served is a flag enabling/disabling this version from being served via REST APIs",
              "type": "boolean",
              "default": false
            },
            "storage": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Wait for volume mounted.
    // Mark volume as fsResizeRequired in ASW.
    // Verifies volume's fsResizeRequired flag is cleared later.
    func Test_Run_Positive_VolumeFSResizeControllerAttachEnabled(t *testing.T) {
    	blockMode := v1.PersistentVolumeBlock
    	fsMode := v1.PersistentVolumeFilesystem
    
    	var tests = []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    		Err:   `xml: comments must not contain "--"`,
    	},
    	// Reject parent chain with attr, never worked; see golang.org/issue/5033.
    	{
    		Value: &AttrParent{},
    		Err:   `xml: X>Y chain not valid with attr flag`,
    	},
    	{
    		Value: BadAttr{map[string]string{"X": "Y"}},
    		Err:   `xml: unsupported type: map[string]string`,
    	},
    }
    
    var marshalIndentTests = []struct {
    	Value     any
    	Prefix    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// the result should be the PC within f that g will return to.
    		// See runtime/stubs.go for a more detailed discussion.
    		{name: "LoweredGetCallerPC", reg: gp01, rematerializeable: true},
    
    		// Constant flag value.
    		// Note: there's an "unordered" outcome for floating-point
    		// comparisons, but we don't use such a beast yet.
    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     * A `compileIntTestJava` task that will compile all the source files under _src/intTest/java_
    
    NOTE: If you are working with the IntelliJ IDE, you may wish to flag the directories in these additional source sets as containing test source rather than production source as explained in the <<idea_plugin.adoc#sec:idea_identify_additional_source_sets,Idea Plugin>> documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. src/time/time.go

    // clock reading.
    type Time struct {
    	// wall and ext encode the wall time seconds, wall time nanoseconds,
    	// and optional monotonic clock reading in nanoseconds.
    	//
    	// From high to low bit position, wall encodes a 1-bit flag (hasMonotonic),
    	// a 33-bit seconds field, and a 30-bit wall time nanoseconds field.
    	// The nanoseconds field is in the range [0, 999999999].
    	// If the hasMonotonic bit is 0, then the 33-bit field must be zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    					// this extension and it takes priority.
    					continue
    				}
    
    				newValue = append(newValue, pkix.AttributeTypeAndValue{
    					// There is no place for the critical
    					// flag in an AttributeTypeAndValue.
    					Type:  e.Id,
    					Value: e.Value,
    				})
    			}
    
    			atvSet.Value[0] = newValue
    			extensionsAppended = true
    			break
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    					}
    				}
    			}
    		}
    	}
    
    	// The clobberdeadreg experiment inserts code to clobber dead registers
    	// at call sites.
    	// Ignore huge functions to avoid doing too much work.
    	if base.Flag.ClobberDeadReg && len(s.f.Blocks) <= 10000 {
    		// TODO: honor GOCLOBBERDEADHASH, or maybe GOSSAHASH.
    		s.doClobber = true
    	}
    }
    
    func (s *regAllocState) close() {
    	s.f.Cache.freeValueSlice(s.orig)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top