Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 302 for shame (0.34 sec)

  1. src/regexp/syntax/parse.go

    		if i < len(sub) {
    			istr, iflags = p.leadingString(sub[i])
    			if iflags == strflags {
    				same := 0
    				for same < len(str) && same < len(istr) && str[same] == istr[same] {
    					same++
    				}
    				if same > 0 {
    					// Matches at least one rune in current range.
    					// Keep going around.
    					str = str[:same]
    					continue
    				}
    			}
    		}
    
    		// Found end of a run with common leading literal string:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Attempting to consume them will result in an error.
    
    ==== Identical consumable configurations are now an error
    
    If a project has multiple consumable configurations that share the same attributes and capabilities declaration, the build will fail when publishing or resolving as a dependency that project.
    This was <<#unique_attribute_sets,previously deprecated>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // patches retaining `null` fields and parallel lists. If 2 patches change the
    // same fields and the latter one will override the former one. If you don't
    // want that happen, you need to run func MergingMapsHaveConflicts before
    // merging these patches. Applying the resulting merged merge patch to a JSONMap
    // yields the same as merging each strategic merge patch to the JSONMap in
    // succession.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. src/main/webapp/css/font-awesome.min.css

    cast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{co...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            depCompile.scope == MavenScope.Runtime //scope is defined in the dependency declaration and is not replaced
        }
    
        def "if two dependencyManagement entries for the same dependency are combined, the closest wins a conflict"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // class ::string, which has the same interface as ::std::string, but
    // has a different implementation.
    //
    // The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that
    // ::string is available AND is a distinct type to ::std::string, or
    // define it to 0 to indicate otherwise.
    //
    // If the user's ::std::string and ::string are the same class due to
    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

       * successful input futures. The list of results is in the same order as the input list, and if
       * any of the provided futures fails or is canceled, its corresponding position will contain
       * {@code null} (which is indistinguishable from the future having a successful value of {@code
       * null}).
       *
       * <p>The list of results is in the same order as the input list.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    // getDwsectCUSize retrieves the corresponding package size inside the current section.
    func getDwsectCUSize(sname string, pkgname string) uint64 {
    	return dwsectCUSize[sname+"."+pkgname]
    }
    
    func addDwsectCUSize(sname string, pkgname string, size uint64) {
    	dwsectCUSizeMu.Lock()
    	defer dwsectCUSizeMu.Unlock()
    	dwsectCUSize[sname+"."+pkgname] += size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    				return errors.New("expected HelloRetryRequest")
    			}
    			return nil
    		},
    	}
    	runServerTestTLS13(t, test)
    }
    
    // TestHandshakeServerKeySharePreference checks that we prefer a key share even
    // if it's later in the CurvePreferences order.
    func TestHandshakeServerKeySharePreference(t *testing.T) {
    	config := testConfig.Clone()
    	config.CurvePreferences = []CurveID{X25519, CurveP256}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top