Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for ignoreMe (0.17 sec)

  1. src/cmd/link/internal/ld/lib.go

    	argv = append(argv, hostlinkArchArgs(ctxt.Arch)...)
    
    	if *FlagS || debug_s {
    		if ctxt.HeadType == objabi.Hdarwin {
    			// Recent versions of macOS print
    			//	ld: warning: option -s is obsolete and being ignored
    			// so do not pass any arguments (but we strip symbols below).
    		} else {
    			argv = append(argv, "-s")
    		}
    	}
    
    	// On darwin, whether to combine DWARF into executable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation.go

    	}
    
    	return allErrors
    }
    
    var supportedFailurePolicies = sets.NewString(
    	string(admissionregistration.Ignore),
    	string(admissionregistration.Fail),
    )
    
    var supportedMatchPolicies = sets.NewString(
    	string(admissionregistration.Exact),
    	string(admissionregistration.Equivalent),
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. .bazelrc

    # for specific warnings to still be present.
    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    	err = esController.syncService(logger, fmt.Sprintf("%s/%s", ns, serviceName))
    	assert.Nil(t, err, "Expected no error syncing service")
    
    	// The EndpointSlice marked for deletion should be ignored by the controller, and thus
    	// should not result in any action.
    	if len(client.Actions()) != numActionsBefore {
    		t.Errorf("Expected 0 more actions, got %d", len(client.Actions())-numActionsBefore)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    		hash := hashByDestination[in.Route[0]]
    		consistentHash = hash != nil
    	} else {
    		weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    		for _, dst := range in.Route {
    			if dst.Weight == 0 {
    				// Ignore 0 weighted clusters if there are other clusters in the route.
    				continue
    			}
    			destinationweight, hostname := processWeightedDestination(dst, serviceRegistry, listenerPort, hashByDestination, action)
    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. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
      }
    
      /** Waiter links form a Treiber stack, in the {@link #waiters} field. */
      private static final class Waiter {
        static final Waiter TOMBSTONE = new Waiter(false /* ignored param */);
    
        @CheckForNull volatile Thread thread;
        @CheckForNull volatile Waiter next;
    
        /**
         * Constructor for the TOMBSTONE, avoids use of ATOMIC_HELPER in case this class is loaded
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        }
      }
    
      /** Waiter links form a Treiber stack, in the {@link #waiters} field. */
      private static final class Waiter {
        static final Waiter TOMBSTONE = new Waiter(false /* ignored param */);
    
        @CheckForNull volatile Thread thread;
        @CheckForNull volatile Waiter next;
    
        /**
         * Constructor for the TOMBSTONE, avoids use of ATOMIC_HELPER in case this class is loaded
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. src/go/types/expr.go

    		return Typ[UntypedNil], nil, 0
    	default:
    		return nil, nil, InvalidUntypedConversion
    	}
    	return target, nil, 0
    }
    
    // If switchCase is true, the operator op is ignored.
    func (check *Checker) comparison(x, y *operand, op token.Token, switchCase bool) {
    	// Avoid spurious errors if any of the operands has an invalid type (go.dev/issue/54405).
    	if !isValid(x.typ) || !isValid(y.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	OptDcl []*ir.Name
    
    	// Filled in by the user. Translates Block and Value ID to PC.
    	//
    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    // workers and are distinguished by gcMarkWorkerMode.
    type gcMarkWorkerMode int
    
    const (
    	// gcMarkWorkerNotWorker indicates that the next scheduled G is not
    	// starting work and the mode should be ignored.
    	gcMarkWorkerNotWorker gcMarkWorkerMode = iota
    
    	// gcMarkWorkerDedicatedMode indicates that the P of a mark
    	// worker is dedicated to running that mark worker. The mark
    	// worker should run without preemption.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top