Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 207 for nfail (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle introduced additional task and artifact transform validation warnings in the Gradle 7.x series.
    Those warnings are now errors in Gradle 8.0 and will fail the build.
    
    Warnings that became errors:
    
    - An input file collection that can't be resolved.
    - An input or output file or directory that cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   EXPECT_TRUE  verifies that a Boolean condition is true.
    //   EXPECT_FALSE verifies that a Boolean condition is false.
    //
    // FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
    // that they will also abort the current function on failure.  People
    // usually want the fail-fast behavior of FAIL and ASSERT_*, but those
    // writing data-driven tests often find themselves using ADD_FAILURE
    // and EXPECT_* more.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                            byConflictResolution("between versions 1.1 and 1.0")
                        }
                    }
                    module('org:core:1.1')
                }
            }
        }
    
        def "shouldn't fail if target alignment version doesn't exist"() {
            repository {
                path 'xml -> core'
                path 'json -> core'
                path 'json:1.1 -> core:1.1'
            }
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        /**
         * Associates {@code key} with {@code value} in the built map. Duplicate keys, according to the
         * comparator (which might be the keys' natural order), are not allowed, and will cause {@link
         * #build} to fail.
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(K key, V value) {
          ensureCapacity(size + 1);
          checkEntryNotNull(key, value);
          keys[size] = key;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. tests/migrate_test.go

    		if err := DB.Create(&AutoIncrementStruct{}).Error; err != nil {
    			t.Fatalf("create auto_increment_struct fail, err: %v", err)
    		}
    	}
    
    	rows := make([]*AutoIncrementStruct, 0, ROWS)
    	if err := DB.Order("id ASC").Find(&rows).Error; err != nil {
    		t.Fatalf("find auto_increment_struct fail, err: %v", err)
    	}
    
    	ids := make([]int64, 0, len(rows))
    	for _, row := range rows {
    		ids = append(ids, row.ID)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	}
    	_, err = r.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    	_, err = w.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        public void testValidationErrorUponNonUniqueDependencyKey()
            throws Exception
        {
            try
            {
                buildPom( "unique-dependency-key/deps" );
                fail( "Non-unique dependency keys did not cause validation error" );
            }
            catch ( ProjectBuildingException e )
            {
                // expected
            }
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

    POD_MANIFEST_PATH=${POD_MANIFEST_PATH:-"/var/run/kubernetes/static-pods"}
    KUBELET_FLAGS=${KUBELET_FLAGS:-""}
    KUBELET_IMAGE=${KUBELET_IMAGE:-""}
    # many dev environments run with swap on, so we don't fail in this env
    FAIL_SWAP_ON=${FAIL_SWAP_ON:-"false"}
    # Name of the dns addon, eg: "kube-dns" or "coredns"
    DNS_ADDON=${DNS_ADDON:-"coredns"}
    CLUSTER_CIDR=${CLUSTER_CIDR:-10.1.0.0/16}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    	// The lookup to generate a new client will fail when it tries to query a driver with an unknown name
    	csiUnmounter.csiClientGetter.csiClient = nil
    	// Note that registerFakePlugin above will create a driver with a name of "test-driver"
    	csiUnmounter.csiClientGetter.driverName = "unknown-driver"
    
    	err = csiUnmounter.TearDownAt(dir)
    	if err == nil {
    		t.Errorf("test should fail, but no error occurred")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top