Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for declareNS (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.allArtifacts.buildDependencies.getDependencies(Mock(Task)) == [artifactTask1, artifactTask2] as Set
        }
    
        def "can declare outgoing artifacts for configuration"() {
            def configuration = conf()
            def artifact1 = artifact("name1")
    
            when:
            configuration.outgoing.artifact(Stub(ConfigurablePublishArtifact))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		// a variable to hold g in assembly (currently only intel).
    		if sb.Type() == 0 {
    			sb.SetType(sym.STLSBSS)
    			sb.SetSize(int64(ctxt.Arch.PtrSize))
    		} else if sb.Type() != sym.SDYNIMPORT {
    			Errorf(nil, "runtime declared tlsg variable %v", sb.Type())
    		}
    		ctxt.loader.SetAttrReachable(tlsg, true)
    		ctxt.Tlsg = tlsg
    	}
    
    	var moduledata loader.Sym
    	var mdsb *loader.SymbolBuilder
    	if ctxt.BuildMode == BuildModePlugin {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Synchronized.java

             * be used with collections that may contain null. This collection never contains nulls, so
             * we could return `Object[]`. But this class is private and J2KT cannot change return types
             * in overrides, so we declare `@Nullable Object[]` as the return type.
             */
            return ObjectArrays.toArrayImpl(delegate());
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

             * be used with collections that may contain null. This collection never contains nulls, so
             * we could return `Object[]`. But this class is private and J2KT cannot change return types
             * in overrides, so we declare `@Nullable Object[]` as the return type.
             */
            return ObjectArrays.toArrayImpl(delegate());
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    		// Do not return blackhole cluster for service==nil case as there is a legitimate use case for
    		// calling this function with nil service: to route to a pre-defined statically configured cluster
    		// declared as part of the bootstrap.
    		// If blackhole cluster is needed, do the check on the caller side. See gateway and tls.go for examples.
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. .bazelrc

    # END TF CACHE HELPER OPTIONS
    # BEGIN TF TEST SUITE OPTIONS
    # These are convenience config options that effectively declare TF's CI test suites. Look
    # at the scripts of ci/official/ to see how TF's CI uses them.
    
    # LIBTENSORFLOW TESTS are for building Libtensorflow archives. These are CUDA/CPU-agnostic.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	if cur, exists := listenerMap[listenerMapKey]; exists {
    		currentListenerEntry = cur
    		// NOTE: This is not a conflict. This is simply filtering the
    		// services for a given listener explicitly.
    		// When the user declares their own ports in Sidecar.egress
    		// with some specific services on those ports, we should not
    		// generate any more listeners on that port as the user does
    		// not want those listeners. Protocol sniffing is not needed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            maybeWarnOnChangingUsage("setCanBeDeclared", canBeDeclaredAgainst, allowed);
            setCanBeDeclaredInternal(allowed);
        }
    
        /**
         * Configures if a configuration can have dependencies declared against it, without emitting any warnings.
         */
        private void setCanBeDeclaredInternal(boolean allowed) {
            if (canBeDeclaredAgainst != allowed) {
                validateMutation(MutationType.USAGE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    xVLHwDXh/6NJAiEAl2oHGGLz64BuAfjKrqwz7qMYr9HCLIe/YsoWq/olzScCIQDi
    D2lWusoe2/nEqfDVVWGWlyJ7yOmqaVm/iNUN9B2N2g==
    -----END RSA TESTING KEY-----
    `)
    
    // keyPEM is the same as rsaKeyPEM, but declares itself as just
    // "PRIVATE KEY", not "RSA PRIVATE KEY".  https://golang.org/issue/4477
    var keyPEM = testingKey(`-----BEGIN TESTING KEY-----
    MIIBOwIBAAJBANLJhPHhITqQbPklG3ibCVxwGMRfp/v4XqhfdQHdcVfHap6NQ5Wo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        AbstractFuture<?> future = param;
    
        Listener next = null;
        outer:
        while (true) {
          future.releaseWaiters();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top