Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,471 for wads (0.47 sec)

  1. tests/testdata/mcp_bootstrap_tmpl.json

                }
              }
            ],
            "http2_protocol_options": {}
          }
        ]
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {}
         },
        "cds_config": {
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "grpc_services": {
            "envoy_grpc": {
              "cluster_name": "xds-grpc"
            }
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. pkg/xds/server.go

    	if alwaysRespond {
    		log.Infof("ADS:%s: FORCE RESPONSE %s for warming.", stype, id)
    		return true, emptyResourceDelta
    	}
    
    	if len(removed) == 0 && len(added) == 0 {
    		log.Debugf("ADS:%s: ACK %s %s %s", stype, id, request.VersionInfo, request.ResponseNonce)
    		return false, emptyResourceDelta
    	}
    	log.Debugf("ADS:%s: RESOURCE CHANGE added %v removed %v %s %s %s", stype,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/index.md

    ## OAuth2
    
    OAuth2 is a specification that defines several ways to handle authentication and authorization.
    
    It is quite an extensive specification and covers several complex use cases.
    
    It includes ways to authenticate using a "third party".
    
    That's what all the systems with "login with Facebook, Google, Twitter, GitHub" use underneath.
    
    ### OAuth 1
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. test/copy.go

    	for i = 0; i < out; i++ {
    		if outputS[i] != u8(i+13) {
    			badS("beforeS", i, length, in, out)
    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if outputS[i] != u8(i+in-out) {
    			badS("copiedS", i, length, in, out)
    			return
    		}
    	}
    	// after
    	for ; i < len(outputS); i++ {
    		if outputS[i] != u8(i+13) {
    			badS("afterS", i, length, in, out)
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  5. test/codegen/race.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    // Check that we elide racefuncenter/racefuncexit for
    // functions with no calls (but which might panic
    // in various ways). See issue 31219.
    // amd64:-"CALL.*racefuncenter.*"
    // arm64:-"CALL.*racefuncenter.*"
    // ppc64le:-"CALL.*racefuncenter.*"
    func RaceMightPanic(a []int, i, j, k, s int) {
    	var b [4]int
    	_ = b[i]     // panicIndex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:03:16 UTC 2020
    - 651 bytes
    - Viewed (0)
  6. tools/packaging/common/gcp_envoy_bootstrap.json

          {{ end }}
        },
        "metadata": {{ .meta_json_str }}
      },
      "dynamic_resources": {
        "lds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "cds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "transport_api_version": "V3",
          "grpc_services": [
            {
              "google_grpc": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/go/types/mono_test.go

    	for i, good := range goods {
    		if err := checkMono(t, good); err != nil {
    			t.Errorf("%d: unexpected failure: %v", i, err)
    		}
    	}
    }
    
    func TestMonoBad(t *testing.T) {
    	for i, bad := range bads {
    		if err := checkMono(t, bad); err == nil {
    			t.Errorf("%d: unexpected success", i)
    		} else {
    			t.Log(err)
    		}
    	}
    }
    
    var goods = []string{
    	"func F[T any](x T) { F(x) }",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_cookie_params/test_tutorial001_an.py

                                        "title": "Ads Id",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "Ads Id", "type": "string"}
                                ),
                                "name": "ads_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionPropertiesTest.groovy

        }
    
        def "should report invalid uri"() {
            when:
            new GcsConnectionProperties('httpdasd%:/ads', null, null)
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "System property [org.gradle.gcs.endpoint=httpdasd%:/ads]  must be a valid URI"
        }
    
        def "should allow case insensitive schemes"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_cookie_params/test_tutorial001_py310.py

                                        "title": "Ads Id",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "Ads Id", "type": "string"}
                                ),
                                "name": "ads_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top