Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for attachmentID (0.3 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	adc.actualStateOfWorld.SetVolumesMountedByNode(logger, volumesInUse, nodeName)
    }
    
    // Process Volume-Attachment objects.
    // Should be called only after populating attached volumes in the ASW.
    // For each VA object, this function checks if its present in the ASW.
    // If not, adds the volume to ASW as an "uncertain" attachment.
    // In the reconciler, the logic checks if the volume is present in the DSW;
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/ContextEnabled.java

     */
    package org.apache.maven.plugin;
    
    import java.util.Map;
    
    /**
     * Interface to allow <code>Mojos</code> to communicate with each others <code>Mojos</code>, other than
     * project's source root and project's attachment.<br>
     * The plugin manager would pull the context out of the plugin container context, and populate it into the Mojo.
     *
     */
    public interface ContextEnabled {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml

      <artifactId>maven-it-it0052</artifactId>
      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: it0052</name>
      <description>Test that source attachment doesn't take place when -DperformRelease=true is missing.</description>
    
      <!-- NOTE: Use stub versions of the core plugins referenced by the build -->
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        target single resources. For more information on how this policy attachment
                        mode works, and a sample Policy resource, refer to the policy attachment
                        documentation for Gateway API.
    
    
                        Note: This should only be used for direct policy attachment when references
                        to SectionName are actually needed. In all other cases,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. src/net/http/pprof/pprof.go

    	// Set Content Type assuming StartCPUProfile will work,
    	// because if it does it starts writing.
    	w.Header().Set("Content-Type", "application/octet-stream")
    	w.Header().Set("Content-Disposition", `attachment; filename="profile"`)
    	if err := pprof.StartCPUProfile(w); err != nil {
    		// StartCPUProfile failed, so no writes yet.
    		serveError(w, http.StatusInternalServerError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

          |Content-Disposition: form-data; name="attachment"; filename="resumé.pdf"
          |Content-Type: application/pdf; charset=utf-8
          |
          |Jesse’s Resumé
          |--AaB03x--
          |
          """.trimMargin().replace("\n", "\r\n")
        val body =
          MultipartBody.Builder("AaB03x")
            .setType(MultipartBody.FORM)
            .addFormDataPart(
              "attachment",
              "resumé.pdf",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    					"Services":               apps.A.Append(apps.B).Services(),
    				})).
    				BuildAll(nil, apps.A.Append(apps.B).Services()).
    				Apply()
    
    			t.NewSubTest("gateway-authn-policy-attachment-only").Run(func(t framework.TestContext) {
    				test.SetForTest(t, &features.EnableSelectorBasedK8sGatewayPolicy, false)
    				cases := []struct {
    					name          string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/registry/storage/volumeattachment/strategy.go

    	volumeAttachment := obj.(*storage.VolumeAttachment)
    
    	errs := validation.ValidateVolumeAttachment(volumeAttachment)
    
    	// tighten up validation of newly created v1 attachments
    	errs = append(errs, validation.ValidateVolumeAttachmentV1(volumeAttachment)...)
    	return errs
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/policyattachment_test.go

    			},
    			selection:              sampleGateway,
    			expected:               true,
    			enableSelectorPolicies: true,
    		},
    		{
    			name: "gateway API ingress and a selector (policy attachment only)",
    			policy: &mockPolicyTargetGetter{
    				selector: sampleGatewaySelector,
    			},
    			selection:              sampleGateway,
    			expected:               false,
    			enableSelectorPolicies: false,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java

            // InstallResult install( RepositorySystemSession session, InstallRequest request )
            //                throws InstallationException;
            // release, snapshot unique ou non unique, attachment
        }
    
        @Test
        void testDeploy() throws Exception {
            // DeployResult deploy( RepositorySystemSession session, DeployRequest request )
            //                throws DeploymentException;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top