Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for toGetter (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

     *
     * TODO: move the remote repositories in the requests (plugins will need to access this list somehow)
     * TODO: add request trace so that requests can be linked together and through the resolver
     * TODO: add a Request interface holding session + parent request
     *
     * @since 4.0.0
     */
    @Experimental
    @ThreadSafe
    public interface Session {
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

        // This could be a single Pod, a VM instance, etc.
        Workload workload = 1;
        // Service represents a service - a group of workloads that can be accessed together.
        Service service = 2;
      }
    }
    
    // Service represents a service - a group of workloads that can be accessed together.
    // The xds primary key is "namespace/hostname".
    // Secondary (alias) keys are the unique `network/IP` pairs that the service can be reached at.
    message Service {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes.go

    	return false
    }
    
    // ListMultipartsInfo - represents bucket resources for incomplete multipart uploads.
    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * The file paths of all dependencies, dispatched according the Java options where to place them.
         */
        private final Map<PathType, List<Path>> dispatchedPaths;
    
        /**
         * The dependencies together with the path to each dependency.
         */
        private final Map<Dependency, Path> dependencies;
    
        /**
         * Information about modules in the main output. This field is initially null and is set to a non-null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

                    assertEquals(parentPom, project.getParentFile());
                    parentFileWasFoundOnChild = true;
                }
            }
            assertTrue(parentFileWasFoundOnChild);
    
            // read projects together
            List<ProjectBuildingResult> results = projectBuilder.build(toRead, false, configuration);
            assertResultShowNoError(results);
            assertEquals(parentPom, findChildProject(results).getParentFile());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/productpage.py

    request_result_counter = Counter('request_result', 'Results of requests', ['destination_app', 'response_code'])
    
    # A note on distributed tracing:
    #
    # Although Istio proxies are able to automatically send spans, they need some
    # hints to tie together the entire trace. Applications need to propagate the
    # appropriate HTTP headers so that when the proxies send span information, the
    # spans can be correlated correctly into a single trace.
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. chainable_api.go

    		tx.Statement.AddClause(clause.Where{Exprs: []clause.Expression{clause.Not(conds...)}})
    	}
    	return
    }
    
    // Or add OR conditions
    //
    // Or is used to chain together queries with an OR.
    //
    //	// Find the first user with name equal to jinzhu or john
    //	db.Where("name = ?", "jinzhu").Or("name = ?", "john").First(&user)
    func (db *DB) Or(query interface{}, args ...interface{}) (tx *DB) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/runtime/mfinal.go

    //
    // Note that because finalizers may execute arbitrarily far into the future
    // after an object is no longer referenced, the runtime is allowed to perform
    // a space-saving optimization that batches objects together in a single
    // allocation slot. The finalizer for an unreferenced object in such an
    // allocation may never run if it always exists in the same batch as a
    // referenced object. Typically, this batching only happens for tiny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation.go

    	}
    
    	// Once deallocation has been requested, that request cannot be removed
    	// anymore because the deallocation may already have started. The field
    	// can only get reset by the driver together with removing the
    	// allocation.
    	if oldClaim.Status.DeallocationRequested &&
    		!resourceClaim.Status.DeallocationRequested &&
    		resourceClaim.Status.Allocation != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// ListMetricDescriptors gets the descriptors for the metrics that will be returned in ListPodSandboxMetrics.
    	// This list should be static at startup: either the client and server restart together when
    	// adding or removing metrics descriptors, or they should not change.
    	// Put differently, if ListPodSandboxMetrics references a name that is not described in the initial
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top