Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for specialFiles (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    type ConfigForResource struct {
    	// Config is the resource-independent configuration
    	Config
    
    	// GroupResource is the relevant one
    	GroupResource schema.GroupResource
    }
    
    // ForResource specializes to the given resource
    func (config *Config) ForResource(resource schema.GroupResource) *ConfigForResource {
    	return &ConfigForResource{
    		Config:        *config,
    		GroupResource: resource,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    			d.off = i
    			return
    		}
    	}
    
    	d.off = len(data) + 1 // mark processed EOF with len+1
    	d.opcode = d.scan.eof()
    }
    
    // rescanLiteral is similar to scanWhile(scanContinue), but it specialises the
    // common case where we're decoding a literal. The decoder scans the input
    // twice, once for syntax errors and to check the length of the value, and the
    // second to perform the decoding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top