Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for zeroed (0.11 sec)

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

    		// check that either a global schema or versioned schemas are set in served versions
    		if spec.Validation == nil || spec.Validation.OpenAPIV3Schema == nil {
    			for i, v := range spec.Versions {
    				schemaPath := fldPath.Child("versions").Index(i).Child("schema", "openAPIV3Schema")
    				if v.Served && (v.Schema == nil || v.Schema.OpenAPIV3Schema == nil) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                prefix, "version", problems, errOn30, Version.V20, d.getVersion(), d.getManagementKey(), d);
    
                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // CHECK-NOT:  "tf.TPUReplicateMetadata"
    
    
    // Test ops in a function body with the same `_replication_info` attribute are
    // merged under a `tf_device.cluster` op.
    // CHECK-LABEL: func @ops_in_func_body
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>)
    func.func @ops_in_func_body(%arg0 : tensor<i1>) -> (tensor<i1>, tensor<i1>, tensor<i1>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                            for (PluginExecution execution : plugin.getExecutions()) {
                                if (executionId.equals(execution.getId())) {
                                    // NOTE: The PluginConfigurationExpander already merged the plugin-level config in
                                    dom = (Xpp3Dom) execution.getConfiguration();
                                    break;
                                }
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return winHeapSD.copySelfRelativeSecurityDescriptor(), nil
    }
    
    // BuildSecurityDescriptor makes a new security descriptor using the input trustees, explicit access lists, and
    // prior security descriptor to be merged, any of which can be nil, returning the self-relative security descriptor
    // result on the Go heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    func TestDebuggingDisabledHandlers(t *testing.T) {
    	// for backward compatibility even if enablesystemLogHandler or enableProfilingHandler is set but not
    	// enableDebuggingHandler then /logs, /pprof and /flags shouldn't be served.
    	kubeCfg := &kubeletconfiginternal.KubeletConfiguration{
    		EnableDebuggingHandlers: false,
    		EnableSystemLogHandler:  true,
    		EnableDebugFlagsHandler: true,
    		EnableProfilingHandler:  true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    See the <<scala_plugin#sec:scala_target,Scala plugin documentation>> for details.
    
    ==== `pluginBundle` dropped in Plugin Publish plugin
    
    Gradle 8 no longer supports the `pluginBundle` extension.
    Its functionality has been merged into the `gradlePlugin` block.
    These changes require recent versions of the Plugin Publish plugin (link:https://plugins.gradle.org/plugin/com.gradle.plugin-publish/1.1.0[1.0.+]).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                prefix, "version", problems, errOn30, Version.V20, d.getVersion(), d.getManagementKey(), d);
    
                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/helpers.go

    	results := nodeConditionsObservedAt{}
    	// the input conditions were observed "now"
    	for i := range nodeConditions {
    		results[nodeConditions[i]] = now
    	}
    	// the conditions that were not observed now are merged in with their old time
    	for key, value := range lastObservedAt {
    		_, found := results[key]
    		if !found {
    			results[key] = value
    		}
    	}
    	return results
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        if (used_in_unsupported_op) continue;
        (*result)[arg.getArgNumber()] = info;
      }
      return success();
    }
    
    // Merges two sets of resource arg use infos. An argument is considered used in
    // the merged result as long as either set marks it as used. This is used to
    // merge results from functions that have aliasing inputs, e.g., a while loop's
    // body and condition. The sets of keys of the two maps must be the same.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top