Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 528 for DUMMY (0.15 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

      static class StrongKeyDummyValueEntry<K>
          extends AbstractStrongKeyEntry<K, Dummy, StrongKeyDummyValueEntry<K>>
          implements StrongValueEntry<K, Dummy, StrongKeyDummyValueEntry<K>> {
    
        private StrongKeyDummyValueEntry(K key, int hash) {
          super(key, hash);
        }
    
        @Override
        public final Dummy getValue() {
          return Dummy.VALUE;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/main_windows.c

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
     * Dummy implementations for Windows, because Windows doesn't
     * support Unix-style signal handling.
     */
    
    int install_handler() {
    	return 0;
    }
    
    
    int check_handler() {
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 343 bytes
    - Viewed (0)
  3. src/runtime/race/testdata/select_test.go

    		done chan bool
    	}
    
    	queue := make(chan Task)
    	dummy := make(chan bool)
    
    	go func() {
    		for {
    			select {
    			case t := <-queue:
    				t.f()
    				t.done <- true
    			}
    		}
    	}()
    
    	doit := func(f func()) {
    		done := make(chan bool, 1)
    		select {
    		case queue <- Task{f, done}:
    		case <-dummy:
    		}
    		select {
    		case <-done:
    		case <-dummy:
    		}
    	}
    
    	var x int
    	doit(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 05:25:54 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/util.go

    	defer func() {
    		e := ctx.ConfigKube(cluster).YAML("", dummyValidationVirtualService).Delete()
    		if e != nil {
    			scopes.Framework.Warnf("error deleting dummy virtual service for waiting the validation webhook: %v", e)
    		}
    	}()
    
    	scopes.Framework.Info("Creating dummy virtual service to check for validation webhook readiness")
    	return retry.UntilSuccess(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. maven-compat/src/test/resources/inheritance-repo/t05/maven-test/poms/t05-a-1.0.pom

      <artifactId>t05-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
      <dependencies>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t05-b</artifactId>
          <version>1.0</version>
          <type>jar</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 572 bytes
    - Viewed (0)
  6. tests/integration/security/egress_sidecar_tls_origination_test.go

    					},
    				},
    				// Mutual TLS origination from an authorized sidecar to https endpoint with a CRL with a dummy revoked certificate.
    				// Since the certificate in action is not revoked, the communication should not be impacted.
    				{
    					name:             "dummy crl",
    					credentialToUse:  credWithDummyCRL,
    					from:             apps.Ns2.B,
    					drSelector:       "b",
    					authorizeSidecar: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

        }
    
        /**
         * The actual constructor called by concrete resolve exception implementations. Should not be
         * called except from Gradle internal code.
         *
         * <p>This constructor accepts a dummy parameter since we cannot call the constructor without it,
         * as that emits a deprecation warning. In 9.0, we can change the above constructor to protected
         * and remove this constructor.</p>
         *
         * @since 8.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom

      <artifactId>maven-test-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 355 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            }
    
            buildFile << """
                dependencies {
                    conf 'org:module:1.0'
                }
    
                repositories {
                    maven { url 'dummy' }
                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not find org:module:1.0.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. hack/testdata/pod-restricted-localhost.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        run: target
      name: target
    spec:
      securityContext:
        seccompProfile: 
          type: Localhost
          localhostProfile: dummy.json
      containers:
      - image: busybox
        name: target
        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 467 bytes
    - Viewed (0)
Back to top