Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for addSdk (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Format:      "",
    						},
    					},
    					"time": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Repair *CNIRepairConfig `protobuf:"bytes,13,opt,name=repair,proto3" json:"repair,omitempty"`
    	// Configure the plugin as a chained CNI plugin. When true, the configuration is added to the CNI chain; when false,
    	// the configuration is added as a standalone file in the CNI configuration directory.
    	Chained *wrapperspb.BoolValue `protobuf:"bytes,14,opt,name=chained,proto3" json:"chained,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                      [Default: Drop]'
                    pattern: ^(?i)(Drop|Accept|Return)?$
                    type: string
                  deviceRouteProtocol:
                    description: This defines the route protocol added to programmed device
                      routes, by default this will be RTPROT_BOOT when left blank.
                    type: integer
                  deviceRouteSourceAddress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. doc/go_spec.html

    language.
    </p>
    
    <p>
    A link of the form [<a href="#Language_versions">Go 1.xx</a>] indicates that a described
    language feature (or some aspect of it) was changed or added with language version 1.xx and
    thus requires at minimum that language version to build.
    For details, see the <a href="#Language_versions">linked section</a>
    in the <a href="#Appendix">appendix</a>.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            begin_type.getRank() != 1 || size_type.getRank() != 1) {
          return failure();
        }
        // TODO(disc): remove static shape check once folding/canonicalization func
        // added
        DenseIntElementsAttr size_attr;
        if (matchPattern(op.getSize(), m_Constant(&size_attr))) {
          return failure();
        }
    
        int rank = begin_type.getDimSize(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Contributor: i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	if source.ConfigMap != nil {
    		count++
    		allErrs = append(allErrs, validateConfigMapNodeConfigSourceSpec(source.ConfigMap, fldPath.Child("configMap"))...)
    	}
    	// add more subfields here in the future as they are added to NodeConfigSource
    
    	// exactly one reference subfield must be non-nil
    	if count != 1 {
    		allErrs = append(allErrs, field.Invalid(fldPath, source, "exactly one reference subfield must be non-nil"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="-lh5-" type="string" offset="2"/>
          <match value="-lh6-" type="string" offset="2"/>
          <match value="-lh7-" type="string" offset="2"/>
        </magic>
        <!-- FESS added -->
        <glob pattern="*.lha"/>
        <glob pattern="*.lzh"/>
      </mime-type>
    
      <mime-type type="application/x-lharc">
        <magic priority="50">
          <match value="-lh0-" type="string" offset="2"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	case s.hasOpenDefers && (base.Ctxt.Flag_shared || base.Ctxt.Flag_dynlink) && base.Ctxt.Arch.Name == "386":
    		// Don't support open-coded defers for 386 ONLY when using shared
    		// libraries, because there is extra code (added by rewriteToUseGot())
    		// preceding the deferreturn/ret code that we don't track correctly.
    		s.hasOpenDefers = false
    	}
    	if s.hasOpenDefers && s.instrumentEnterExit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		} else {
    			delete(p.conns, key)
    		}
    	}
    	delete(p.keys, cc)
    }
    
    func (p *http2clientConnPool) closeIdleConnections() {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	// TODO: don't close a cc if it was just added to the pool
    	// milliseconds ago and has never been used. There's currently
    	// a small race window with the HTTP/1 Transport's integration
    	// where it can add an idle conn just before using it, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top