Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 91 for PROPERTIES (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final Map<String, MappingMetadata> indexMappings = getMappingsResponse.mappings();
            if (indexMappings == null || !indexMappings.containsKey("properties")) {
                String source = null;
                final String mappingFile = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/" + docType + ".json");
                try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (StatusCause) SwaggerDoc() map[string]string {
    	return map_StatusCause
    }
    
    var map_StatusDetails = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   "items[0].name" - the field "name" on the first array entry in "items"
      // +optional
      optional string field = 3;
    }
    
    // StatusDetails is a set of additional properties that MAY be set by the
    // server to provide additional information about a response. The Reason
    // field of a Status object defines what attributes will be set. Clients
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //   "items[0].name" - the field "name" on the first array entry in "items"
      // +optional
      optional string field = 3;
    }
    
    // StatusDetails is a set of additional properties that MAY be set by the
    // server to provide additional information about a response. The Reason
    // field of a Status object defines what attributes will be set. Clients
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// Intel recommends MFENCE;LFENCE in its manuals before RDTSC to have all
    	// previous instructions executed and all previous loads and stores to globally visible.
    	// Using MFENCE;LFENCE here aligns the serializing properties without
    	// runtime detection of CPU manufacturer.
    	MFENCE
    	LFENCE
    	RDTSC
    	JMP done
    
    // func memhash(p unsafe.Pointer, h, s uintptr) uintptr
    // hash function using AES hardware instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    queue_name = result.method.queue
    
    channel.queue_bind(exchange='bucketevents',
                       queue=queue_name)
    
    print(' [*] Waiting for logs. To exit press CTRL+C')
    
    def callback(ch, method, properties, body):
        print(" [x] %r" % body)
    
    channel.basic_consume(callback,
                          queue=queue_name,
                          no_ack=False)
    
    channel.start_consuming()
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. go.sum

    github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae/go.mod h1:ilwx/Dta8jXAgpFYFvSWEMwxmbWXyiUHkd5FwyKhb5k=
    github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
    github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
    github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Suggested HTTP return code for this status, 0 if not set.
    	// +optional
    	Code int32 `json:"code,omitempty" protobuf:"varint,6,opt,name=code"`
    }
    
    // StatusDetails is a set of additional properties that MAY be set by the
    // server to provide additional information about a response. The Reason
    // field of a Status object defines what attributes will be set. Clients
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    	roots    []*loadPkg
    	pkgCache *par.Cache[string, *loadPkg]
    	pkgs     []*loadPkg // transitive closure of loaded packages and tests; populated in buildStacks
    }
    
    // loaderParams configure the packages loaded by, and the properties reported
    // by, a loader instance.
    type loaderParams struct {
    	PackageOpts
    	requirements *Requirements
    
    	allPatternIsRoot bool // Is the "all" pattern an additional root?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	}
    	nbytes := npages * pageSize
    	if typ.manual() {
    		s.manualFreeList = 0
    		s.nelems = 0
    		s.limit = s.base() + s.npages*pageSize
    		s.state.set(mSpanManual)
    	} else {
    		// We must set span properties before the span is published anywhere
    		// since we're not holding the heap lock.
    		s.spanclass = spanclass
    		if sizeclass := spanclass.sizeclass(); sizeclass == 0 {
    			s.elemsize = nbytes
    			s.nelems = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top