Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 337 for creat (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "watch":
    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/time/format.go

    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    		buf = append(buf, "time.Local"...)
    	default:
    		// there are several options for how we could display this, none of
    		// which are great:
    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    		// embedded and also would require us to escape the string without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    // TODO throw Exception in next release
                    // create
                    response = client.prepareIndex().setIndex(index).setSource(new DocMap(source)).setRefreshPolicy(RefreshPolicy.IMMEDIATE)
                            .setOpType(OpType.CREATE).execute().actionGet(fessConfig.getIndexIndexTimeout());
                } else {
                    // create or update
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        self.emit('scf.if {} -> ({}) {{'.format(cond, ', '.join(out_types)))
        # Create a new scope in case the local variables are leaked.
        self.symbol_table.enter_scope(scf_scope=True)
        self.visit_block(body_def.body)
        self.visit_block(get_state.body)
        self.symbol_table.exit_scope()
    
        self.emit('\n} else {')
    
        # Create a new scope in case the local variables are leaked.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // +enum
    type OperationType string
    
    // The constants should be kept in sync with those defined in k8s.io/kubernetes/pkg/admission/interface.go.
    const (
    	OperationAll OperationType = "*"
    	Create       OperationType = "CREATE"
    	Update       OperationType = "UPDATE"
    	Delete       OperationType = "DELETE"
    	Connect      OperationType = "CONNECT"
    )
    
    // WebhookClientConfig contains the information to make a TLS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    type OperationType = v1.OperationType
    
    // The constants should be kept in sync with those defined in k8s.io/kubernetes/pkg/admission/interface.go.
    const (
    	OperationAll OperationType = v1.OperationAll
    	Create       OperationType = v1.Create
    	Update       OperationType = v1.Update
    	Delete       OperationType = v1.Delete
    	Connect      OperationType = v1.Connect
    )
    
    // WebhookClientConfig contains the information to make a TLS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        Assumptions.assumeFalse(windows) // Windows can't have two concurrent editors.
    
        // Create an editor for k1. Detach it by clearing the cache.
        val editor = cache.edit("k1")!!
        editor.setString(0, "a")
        editor.setString(1, "a")
        cache.evictAll()
    
        // Create a new value in its place.
        set("k1", "bb", "bb")
        assertThat(cache.size()).isEqualTo(4)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	csectSymNb   uint64           // Symbol number for the current .csect
    	csectVAStart int64
    	csectVAEnd   int64
    }
    
    var (
    	currDwscnoff   = make(map[string]uint64) // Needed to create C_DWARF symbols
    	currSymSrcFile xcoffSymSrcFile
    	outerSymSize   = make(map[string]int64)
    )
    
    // xcoffUpdateOuterSize stores the size of outer symbols in order to have it
    // in the symbol table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * AWS/GCE: Spread PetSet volume creation across zones, create GCE volumes in non-master zones ([#27553](https://github.com/kubernetes/kubernetes/pull/27553), [@justinsb](https://github.com/justinsb))
    * GCE provider: Create TargetPool with 200 instances, then update with rest ([#27829](https://github.com/kubernetes/kubernetes/pull/27829), [@zmerlynn](https://github.com/zmerlynn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top