Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for proper (0.12 sec)

  1. src/database/sql/fakedb_test.go

    }
    
    func (c *fakeConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
    	// This is an optional interface, but it's implemented here
    	// just to check that all the args are of the proper types.
    	// ErrSkip is returned so the caller acts as if we didn't
    	// implement this at all.
    	err := checkSubsetTypes(c.db.allowAny, args)
    	if err != nil {
    		return nil, err
    	}
    	return nil, driver.ErrSkip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                    }
                }
            """
    
            buildFile << """
                plugins {
                    // This plugin is needed in order to get the proper AttributeSchema compatibility/disambiguation
                    // rules. Once we understand this reproducer better, we can likely construct a graph that does not
                    // need these resolution rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            }
    
            public List<PluginDescriptor> getCollectedDescriptors() {
                return descriptors;
            }
        }
    
        /**
         * Implements plugin validation tasks to validate that a proper plugin jar is produced.
         */
        static class PluginValidationAction implements Action<Task> {
            private final Provider<Collection<PluginDeclaration>> plugins;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils_test.go

    		// "X-Amz-Content-Sha256" not set and  PreSigned Signature v4 not enabled, sha256 checksum calculation is not skipped.
    		{"", "", "X-Amz-Credential", "", true},
    
    		// Test case - 8.
    		// "X-Amz-Content-Sha256" has a proper value cannot skip.
    		{"X-Amz-Content-Sha256", "somevalue", "", "", false},
    	}
    
    	for i, testCase := range testCases {
    		// creating an input HTTP request.
    		// Only the headers are relevant for this particular test.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    		}
    		if !reflect.DeepEqual(*s, Structural{ValueValidation: &ValueValidation{}}) {
    			// TODO: this is actually a field.Invalid error, but we cannot do JSON serialization of metadata here to get a proper message
    			allErrs = append(allErrs, field.Forbidden(fldPath, "must not specify anything other than name and generateName, but metadata is implicitly specified"))
    		}
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf_test.go

    	// DIE entries for all input and output parameters, and that:
    	//
    	//   - attributes are set correctly for output params,
    	//   - things appear in the proper order
    	//   - things work properly for both register-resident
    	//     params and params passed on the stack
    	//   - things work for both referenced and unreferenced params
    	//   - things work for named return values un-named return vals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    include::sample[dir="snippets/dependencyManagement/dependencyLocking-lockingAllConfigurations/groovy",files="build.gradle[tags=resolve-all]"]
    ====
    
    That second option, with proper selection of configurations, can be the only option in the native world, where not all configurations can be resolved on a single platform.
    
    == Lock state location and format
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    const (
    	// DefaultPercentageOfNodesToScore defines the percentage of nodes of all nodes
    	// that once found feasible, the scheduler stops looking for more nodes.
    	// A value of 0 means adaptive, meaning the scheduler figures out a proper default.
    	DefaultPercentageOfNodesToScore = 0
    
    	// MaxCustomPriorityScore is the max score UtilizationShapePoint expects.
    	MaxCustomPriorityScore int64 = 10
    
    	// MaxTotalScore is the maximum total score.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                        if (properties != null && properties.length > 0) {
                            headers = new HashMap<>();
                            for (PlexusConfiguration property : properties) {
                                headers.put(
                                        property.getChild("name").getValue(),
                                        property.getChild("value").getValue());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. cmd/erasure-metadata.go

    					candidate = metaArr[i]
    					found = true
    				}
    				props := objProps{
    					succModTime: metaArr[i].SuccessorModTime,
    					numVersions: metaArr[i].NumVersions,
    				}
    				otherPropsMap[props]++
    			}
    		}
    	}
    
    	if found {
    		// Update candidate FileInfo with succModTime and numVersions in quorum when available
    		if props, ok := otherPropsMap.GetValueWithQuorum(quorum); ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top