Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for getReader (0.2 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/EnumsInManagedModelIntegrationTest.groovy

                    FEMALE, MALE, OTHER
                }
    
                @Managed
                interface Person {
                  String getName()
                  void setName(String string)
    
                  Gender getGender()
                  void setGender(Gender gender)
                }
    
                class Rules extends RuleSource {
                  @Model
                  void p1(Person p1) {}
                }
    
                apply type: Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializer.java

            }
    
            final DeserializeMap map = classLoaderRegistry.newDeserializeSession();
            try {
                final Map<Short, ClassLoaderDetails> classLoaderDetails = Cast.uncheckedNonnullCast(payload.getHeader());
                StreamByteBuffer buffer = StreamByteBuffer.of(payload.getSerializedModel());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

                new Random().nextBytes(connectionAuth.challenge)
                connections[HttpConnection.currentConnection] = connectionAuth
            }
    
            if (connectionAuth.failed) {
                httpResponse.setHeader(HttpHeader.WWW_AUTHENTICATE.asString(), "basic realm=\"" + _loginService.getName() + '"')
                httpResponse.sendError(HttpServletResponse.SC_UNAUTHORIZED)
                return Authentication.SEND_CONTINUE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/DevServer.kt

      val server =
        MockWebServer().apply {
          useHttps(handshakeCertificates.sslSocketFactory(), false)
    
          enqueue(
            MockResponse()
              .setResponseCode(HTTP_MOVED_TEMP)
              .setHeader("Location", "https://www.google.com/robots.txt"),
          )
        }
    
      val clientCertificates =
        HandshakeCertificates.Builder()
          .addPlatformTrustedCertificates()
          .addInsecureHost(server.hostName)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PrebuiltLibrary.java

         */
        DomainObjectSet<NativeLibraryBinary> getBinaries();
    
        /**
         * The headers exported by this library. These headers will be added to all binaries for this library.
         */
        SourceDirectorySet getHeaders();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

            this.causes = ImmutableList.copyOf(causes);
        }
    
        @Override
        public Class<? extends Throwable> getExceptionType() {
            return original.getClass();
        }
    
        @Override
        public String getHeader() {
            return original.toString();
        }
    
        @Override
        public List<StackTraceElement> getStackTrace() {
            return stackTrace;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/leaderelection_test.go

    		cycle:          atomic.NewInt32(0),
    	}
    	gotLeader := atomic.NewBool(false)
    	l.AddRunFunction(func(stop <-chan struct{}) {
    		gotLeader.Store(true)
    	})
    	stop := make(chan struct{})
    	go l.Run(stop)
    	t.Cleanup(func() {
    		close(stop)
    	})
    
    	// Need to retry until Run() starts to execute in the goroutine.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/test/echo/response.go

    }
    
    // Count occurrences of the given text within the body of this response.
    func (r Response) Count(text string) int {
    	return strings.Count(r.RawContent, text)
    }
    
    // GetHeaders returns the appropriate headers for the given type.
    func (r Response) GetHeaders(hType HeaderType) http.Header {
    	switch hType {
    	case RequestHeader:
    		return r.RequestHeaders
    	case ResponseHeader:
    		return r.ResponseHeaders
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFile.groovy

            return xml.ItemGroup.findAll({ it.'@Label' == 'Filters' })[0]
        }
    
        private Node getSources() {
            return xml.ItemGroup.find({ it.'@Label' == 'Sources' }) as Node
        }
    
        private Node getHeaders() {
            return xml.ItemGroup.find({ it.'@Label' == 'Headers' }) as Node
        }
    
        private String toPath(File it) {
            fileLocationResolver.transform(it)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
            final SearchHelper searchHelper = ComponentUtil.getSearchHelper();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            if (!fessConfig.isAcceptedSearchReferer(request.getHeader("referer"))) {
                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Referer is invalid."));
                return;
            }
    
            if (!fessConfig.isApiSearchScroll()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top