Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for impacted (0.14 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

       *
       * If you're upgrading to OkHttp 4.6 and would like to retain the previous behavior, install this
       * as a **network interceptor**. It will strip the `Location` header of impacted responses to
       * prevent the redirect.
       *
       * ```
       * OkHttpClient client = client.newBuilder()
       *   .addNetworkInterceptor(new LegacyRedirectInterceptor())
       *   .build();
       * ```
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. cmd/data-usage-cache_gen.go

    				err = z.AllTierStats.DecodeMsg(dc)
    				if err != nil {
    					err = msgp.WrapError(err, "AllTierStats")
    					return
    				}
    			}
    		case "c":
    			z.Compacted, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Compacted")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	// for example, if the package doesn't exist or if the import path is malformed.
    	// On the other hand, don't include a position if the problem is with the imported package,
    	// for example there are no Go files (NoGoError), or there's a problem in the imported
    	// package's source files themselves (scanner errors).
    	//
    	// TODO(matloob): Perhaps make each of those the errors in the first group
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    					{key: "zone", value: "zone2"}:  1,
    					{key: "node", value: "node-a"}: 1,
    					{key: "node", value: "node-x"}: 1,
    				},
    			},
    		},
    		{
    			name: "node a impacts topologyKeyToMinPodsMap on node, node x impacts topologyKeyToMinPodsMap on zone",
    			preemptor: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // # Controlling version control with GOVCS
    //
    // The 'go get' command can run version control commands like git
    // to download imported code. This functionality is critical to the decentralized
    // Go package ecosystem, in which code can be imported from any server,
    // but it is also a potential security problem, if a malicious server finds a
    // way to cause the invoked version control command to run unintended code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // the given meta graph to an MLIR Module.
      //
      // `import_restore` is introduced to control whether restore graph
      // is imported in eg. SavedModelSignatureDefImporter. Ideally, we don't need
      // this option to control this as restore graph should be always imported.
      // However, right now, SavedModelSignatureDefImporter cannot handle restore
      // graph correctly.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    			size = len(op.Bytes)
    		}
    
    		if size > 1*mb {
    			errs = AppendValidation(errs, WrapError(fmt.Errorf("large direct_responses may impact control plane performance, must be less than 1MB")))
    		} else if size > 100*kb {
    			errs = AppendValidation(errs, WrapWarning(fmt.Errorf("large direct_responses may impact control plane performance")))
    		}
    	}
    
    	errs = AppendValidation(errs, WrapError(validateHTTPStatus(int32(directResponse.Status))))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

      public boolean containsKey(@CheckForNull Object key) {
        // does not impact recency ordering
        if (key == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).containsKey(key, hash);
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        // does not impact recency ordering
        if (value == null) {
          return false;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

      public boolean containsKey(@CheckForNull Object key) {
        // does not impact recency ordering
        if (key == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).containsKey(key, hash);
      }
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        // does not impact recency ordering
        if (value == null) {
          return false;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDeletionCost, tc.featureEnabled)
    			// The new pod doesn't impact the outcome.
    			gotOptions := GetValidationOptionsFromPodSpecAndMeta(nil, nil, nil, tc.oldPodMeta)
    			if tc.wantAllowInvalidPodDeletionCost != gotOptions.AllowInvalidPodDeletionCost {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top