Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 251 for GETs (0.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

        /**
         * Creates an initially empty cache.
         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
         * Gets module information for the given JAR file or output directory.
         * Module descriptors are read when first requested, then cached.
         */
        PathModularization getModuleInfo(Path path) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            failure.assertHasCause(mutationExceptionFor(description))
    
            where:
            [description, code] << INVALID_CALL_FROM_LAZY_CONFIGURATION
        }
    
        def "gets useful message when using improper type for named using #api"() {
            buildFile << """
                class CustomTask extends DefaultTask {
                }
                class AnotherTask extends DefaultTask {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1.go

    	}
    
    	nx := byte(d.nx)
    	t := nx - 56                 // if nx < 56 then the MSB of t is one
    	mask1b := byte(int8(t) >> 7) // mask1b is 0xFF iff one block is enough
    
    	separator := byte(0x80) // gets reset to 0x00 once used
    	for i := byte(0); i < chunk; i++ {
    		mask := byte(int8(i-nx) >> 7) // 0x00 after the end of data
    
    		// if we reached the end of the data, replace with 0x80 or 0x00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/go/ast/import.go

    				} else {
    					// An import spec can have both block comment and a line comment
    					// to its right. In that case, both of them will have the same pos.
    					// But while formatting the AST, the line comment gets moved to
    					// after the block comment.
    					c.Slash = pos[i].End
    				}
    			}
    		}
    	}
    
    	slices.SortFunc(comments, func(a, b *CommentGroup) int {
    		return cmp.Compare(a.Pos(), b.Pos())
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    // used for validation rather than structure.
    type ValidationExtensions struct {
    	// x-kubernetes-validations describes a list of validation rules for expression validation.
    	// Use the v1 struct since this gets serialized as an extension.
    	XValidations apiextensionsv1.ValidationRules
    }
    
    // +k8s:deepcopy-gen=true
    
    // ValueValidation contains all schema fields not contributing to the structure of the schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc.go

    	// fc volumes used directly in a pod have a ReadOnly flag set by the pod author.
    	// fc volumes used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV
    	fc, readOnly, err := getVolumeSource(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	wwns, lun, wwids, err := getWwnsLunWwids(fc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. hack/ginkgo-e2e.sh

    export PATH
    
    # Choose the program to execute and additional arguments for it.
    #
    # Note that the e2e.test binary must have been built with "make DBG=1"
    # when using debuggers, otherwise debug information gets stripped.
    case "${E2E_TEST_DEBUG_TOOL:-ginkgo}" in
      ginkgo)
        program=("${ginkgo}")
        if [[ -n "${GINKGO_PARALLEL_NODES:-}" ]]; then
          program+=("--nodes=${GINKGO_PARALLEL_NODES}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. pkg/volume/flexvolume/plugin.go

    }
    
    // RequiresRemount is part of the volume.VolumePlugin interface.
    func (plugin *flexVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    // GetAccessModes gets the allowed access modes for this plugin.
    func (plugin *flexVolumePlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
    	return []api.PersistentVolumeAccessMode{
    		api.ReadWriteOnce,
    		api.ReadOnlyMany,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32.go

    func Update(crc uint32, tab *Table, p []byte) uint32 {
    	// Unfortunately, because IEEETable is exported, IEEE may be used without a
    	// call to MakeTable. We have to make sure it gets initialized in that case.
    	return update(crc, tab, p, true)
    }
    
    func (d *digest) Write(p []byte) (n int, err error) {
    	// We only create digest objects through New() which takes care of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top