Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for _ignored (0.3 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	IN_DELETE                                   = 0x200
    	IN_DELETE_SELF                              = 0x400
    	IN_DONT_FOLLOW                              = 0x2000000
    	IN_EXCL_UNLINK                              = 0x4000000
    	IN_IGNORED                                  = 0x8000
    	IN_ISDIR                                    = 0x40000000
    	IN_LOOPBACKNET                              = 0x7f
    	IN_MASK_ADD                                 = 0x20000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				// UID is updated, which causes pod config to deliver DELETE -> ADD while the old pod is still shutting
    				// down and the pod worker to ignore the ADD. The HandlePodCleanups method then is responsible for syncing
    				// that pod to the pod worker so that it restarts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		if opts.PartNumber > 0 {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRangePartNumber), r.URL)
    			return
    		}
    
    		rs, rangeErr = parseRequestRangeSpec(rangeHeader)
    		// Handle only errInvalidRange. Ignore other
    		// parse error and treat it as regular Get
    		// request like Amazon S3.
    		if errors.Is(rangeErr, errInvalidRange) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRange), r.URL)
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    				Tls: &networking.ServerTLSSettings{
    					Mode:           networking.ServerTLSSettings_ISTIO_MUTUAL,
    					CredentialName: "ignored",
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp,
    					TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    		o1 = AOP_IRR(inst, uint32(p.To.Reg), uint32(r), uint32(v))
    
    		// Sign extend MOVB operations. This is ignored for other cases (o.size == 4).
    		o2 = LOP_RRR(OP_EXTSB, uint32(p.To.Reg), uint32(p.To.Reg), 0)
    
    	case 9: /* RLDC Ra, $sh, $mb, Rb */
    		sh := uint32(p.RestArgs[0].Addr.Offset) & 0x3F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// verify the right pod was killed with the right grace period.
    	if podKiller.pod == podToEvict {
    		t.Errorf("Manager chose to kill critical pod: %v, but should have ignored it", podKiller.pod.Name)
    	}
    	// reset state
    	podKiller.pod = nil
    	podKiller.gracePeriodOverride = nil
    
    	// remove memory pressure
    	fakeClock.Step(20 * time.Minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	attachableVolumePluginName := unknownAttachableVolumePlugin
    
    	// Get attacher plugin
    	attachableVolumePlugin, err :=
    		og.volumePluginMgr.FindAttachablePluginBySpec(volumeToAttach.VolumeSpec)
    	// It's ok to ignore the error, returning error is not expected from this function.
    	// If an error case occurred during the function generation, this error case(skipped one) will also trigger an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          const auto& key = node_attr.first;
          // Only import optional attributes (e.g., those starting with an
          // underscore).
          if (key.empty() || key[0] != '_') continue;
          // Ignore shape inference attributes as shape information is already
          // populated in the result type.
          if (IsOutputShapesAttribute(node_attr.second, key) ||
              IsResourceOutputShapesAttribute(node_attr.second, key))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    		maximumPartNumber bool   // Sets a maximum parts.
    		accessKey         string
    		secretKey         string
    		// expected output.
    		expectedRespStatus int
    	}{
    		// Test case - 1, copy part 1 from newObject1, ignore request headers.
    		{
    			bucketName:         bucketName,
    			uploadID:           uploadID,
    			copySourceHeader:   url.QueryEscape(SlashSeparator + bucketName + SlashSeparator + objectName),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    	return bindPlugin
    }
    
    func (t TestBindPlugin) Bind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) *framework.Status {
    	return nil
    }
    
    // nolint:errcheck   // Ignore the error returned by Register as before
    var registry = func() Registry {
    	r := make(Registry)
    	r.Register(scoreWithNormalizePlugin1, newScoreWithNormalizePlugin1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top