Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for publishing (0.14 sec)

  1. pkg/volume/csi/csi_plugin.go

    		if lastErr == nil || apierrors.IsNotFound(lastErr) {
    			// API server contacted
    			return true, nil
    		}
    		klog.V(2).Infof("Failed to contact API server when waiting for CSINode publishing: %s", lastErr)
    		return false, nil
    	})
    	if err != nil {
    		// In theory this is unreachable, but just in case:
    		return fmt.Errorf("%v: %v", err, lastErr)
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Annotations to add to the egress gateway service.
      google.protobuf.Struct serviceAnnotations = 17;
    
      // Service type.
      //
      // See https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      string type = 18;
    
      // Enables cross-cluster access using SNI matching.
      ZeroVPNConfig zvpn = 19;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 20 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	//
    	// Non-structural schemas will not be allowed anymore in v1 API groups. Moreover, new features will not be
    	// available for non-structural CRDs:
    	// - pruning
    	// - defaulting
    	// - read-only
    	// - OpenAPI publishing
    	// - webhook conversion
    	NonStructuralSchema CustomResourceDefinitionConditionType = "NonStructuralSchema"
    	// Terminating means that the CustomResourceDefinition has been deleted and is cleaning up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return
    	}
    	state, err := getStateData(cs)
    	if err != nil {
    		return
    	}
    	if len(state.claims) == 0 {
    		return
    	}
    
    	logger := klog.FromContext(ctx)
    
    	// Was publishing delayed? If yes, do it now.
    	//
    	// The most common scenario is that a different set of potential nodes
    	// was identified. This revised set needs to be published to enable DRA
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    If we inspect the directory listing, we discover that a `quasar-core-0.7.9-jdk8.jar` was published, in addition to `quasar-core-0.7.9.jar`.
    Publishing additional jars with a _classifier_ (here _jdk8_) is common practice in maven repositories.
    And while both Maven and Gradle allow you to reference such jars by classifier, they are not mentioned at all in the metadata.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle tasks
    ----
    
    By default, this report shows only those tasks assigned to a task group.
    
    Groups (such as verification, publishing, help, build...) are available as the header of each section when listing tasks:
    
    ----
    > Task :tasks
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    
    Build Setup tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    To apply and configure the plugin, add the following code to your build file:
    
    ====
    include::sample[dir="snippets/plugins/customPlugin/kotlin/java-gradle-plugin",files="build.gradle.kts[tags=use-and-configure-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    //
    // Goroutine structs are published in the allg list and never freed.
    // That will keep the goroutine structs from being collected.
    // There is never a time that Gobuf.g's contain the only references
    // to a goroutine: the publishing of the goroutine in allg comes first.
    // Goroutine pointers are also kept in non-GC-visible places like TLS,
    // so I can't see them ever moving. If we did want to start moving data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    		mpc := &mp.future[index]
    		mp.active.add(mpc)
    		*mpc = memRecordCycle{}
    	}
    }
    
    // mProf_PostSweep records that all sweep frees for this GC cycle have
    // completed. This has the effect of publishing the heap profile
    // snapshot as of the last mark termination without advancing the heap
    // profile cycle.
    func mProf_PostSweep() {
    	// Flush cycle C+1 to the active profile so everything as of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For any other situation, keep reading.
    
    [TIP]
    ====
    When publishing plugins, please use Gradle's built-in <<java_gradle_plugin#java_gradle_plugin,Gradle Plugin Development Plugin>>.
    
    It automates the publication of the metadata necessary to make your plugins usable with the `plugins {}` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top