Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 344 for differs (0.16 sec)

  1. staging/src/k8s.io/api/core/v1/types_test.go

    	}
    	for i := 0; i < ephemeralFields; i++ {
    		ephemeralField := ephemeralType.Field(i)
    		containerField := containerType.Field(i)
    		if !reflect.DeepEqual(ephemeralField, containerField) {
    			t.Errorf("field %v differs:\n\t%#v\n\t%#v", ephemeralField.Name, ephemeralField, containerField)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1beta1/types.go

    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    	// If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/ExactVersionSelectorTest.groovy

            !accept("1.0", "1.1")
            !accept("2.0", "3.0")
            !accept("!@#%", "%#@!")
            !accept("hey joe", "hoe hey")
        }
    
        def "does not accept candidate version that differs in separator"() {
            expect:
            !accept("1.0", "1_0")
            !accept("1_0", "1-0")
            !accept("1-0", "1+0")
            !accept("1.a.2", "1a2")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

                        </accessrules>
                    </classpathentry>'''
        final fileReferenceFactory = new FileReferenceFactory()
    
        String platformXml;
    
        def setup(){
                //xml differs on windows and mac due to required absolute paths for javadoc uri
                platformXml = XML_TEXT_TEMPLATE.replace("%FILE_URI%", new File("ant-javadoc.jar").toURI().toString());
            }
    
        def canReadFromXml() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. api/api-rules/README.md

    And the violation list is sorted alphabetically in each of the \<RULE\>, \<PACKAGE\>, \<TYPE\>, \<FIELD\> levels.
    
    ## How to resolve API Rule Check Failure
    
    Make rule returns an error when the newly generated violation report differs from this
    checked-in violation report.
    
    Our goal is that exceptions should never be added to this list, only fixed and removed.
    For new APIs, this is a hard requirement. For APIs that are e.g. being moved between
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:50:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/LibraryTest.groovy

                            </accessrules>
                        </classpathentry>'''
        final fileReferenceFactory = new FileReferenceFactory()
    
        String platformXml;
    
        def setup(){
            //xml differs on windows and mac due to required absolute paths for javadoc uri
            platformXml = XML_TEXT_TEMPLATE.replace("%FILE_URI%", new File("ant-javadoc.jar").toURI().toString());
        }
    
        def canReadFromXml() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

        /**
         * Force the task graph to come into existence.
         */
        void realize();
    
        /**
         * Performs work to discover more tasks.
         *
         * This method differs from {@link #realize} in that it does not realize the whole subtree.
         */
        void discoverTasks();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. docs/debugging/s3-verify/main.go

    			fmt.Printf("unreadable on source - size differs upon read: %s\n", srcCtnt.Key)
    			sourceFailed = true
    		}
    	}()
    	go func() {
    		defer wg.Done()
    		tgtSize, err := io.Copy(tgtSha256, tobj)
    		if err != nil {
    			fmt.Printf("unreadable on target: %s (%s)\n", tgtCtnt.Key, err)
    			targetFailed = true
    		} else if tgtSize != tgtCtnt.Size {
    			fmt.Printf("unreadable on target - size differs upon read: %s\n", tgtCtnt.Key)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/11-language-change.yml

        attributes:
          label: Has this idea, or one like it, been proposed before?
          description: If so, how does this proposal differ?
          placeholder: |
           Yes or No
    
           If yes, 
            1. Mention the related proposals 
            2. then describe how this proposal differs       
        validations:
          required: true
    
      - type: textarea
        id: error-handling-proposal
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/runtime/memmove_riscv64.s

    	// buffer and go backward.
    	BGTU	X10, X11, backward
    
    	// If less than 8 bytes, do single byte copies.
    	MOV	$8, X9
    	BLT	X12, X9, f_loop4_check
    
    	// Check alignment - if alignment differs we have to do one byte at a time.
    	AND	$7, X10, X5
    	AND	$7, X11, X6
    	BNE	X5, X6, f_loop8_unaligned_check
    	BEQZ	X5, f_loop_check
    
    	// Move one byte at a time until we reach 8 byte alignment.
    	SUB	X5, X9, X5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top