Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 335 for mod$ (0.07 sec)

  1. src/go/printer/printer_test.go

    	}
    
    	// determine printer configuration
    	cfg := Config{Tabwidth: tabwidth}
    	if mode&rawFormat != 0 {
    		cfg.Mode |= RawFormat
    	}
    	if mode&normNumber != 0 {
    		cfg.Mode |= normalizeNumbers
    	}
    
    	// print AST
    	var buf bytes.Buffer
    	if err := cfg.Fprint(&buf, fset, f); err != nil {
    		return nil, fmt.Errorf("print: %s", err)
    	}
    
    	// make sure formatted output is syntactically correct
    	res := buf.Bytes()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry.go

    			}
    		}
    	}
    
    	return providers
    }
    
    func matchWorkloadMode(selector *tpb.AccessLogging_LogSelector, mode tpb.WorkloadMode) bool {
    	if selector == nil {
    		return true
    	}
    
    	if selector.Mode == tpb.WorkloadMode_CLIENT_AND_SERVER {
    		return true
    	}
    
    	return selector.Mode == mode
    }
    
    func (t *Telemetries) namespaceWideTelemetryConfig(namespace string) Telemetry {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    func (tv TypeAndValue) Addressable() bool {
    	return tv.mode == variable
    }
    
    // Assignable reports whether the corresponding expression
    // is assignable to (provided a value of the right type).
    func (tv TypeAndValue) Assignable() bool {
    	return tv.mode == variable || tv.mode == mapindex
    }
    
    // HasOk reports whether the corresponding expression may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/os/exec.go

    		}
    		return status
    	}
    }
    
    func (p *Process) pidStatus() processStatus {
    	if p.mode != modePID {
    		panic("pidStatus called in invalid mode")
    	}
    
    	return processStatus(p.state.Load())
    }
    
    func (p *Process) pidDeactivate(reason processStatus) {
    	if p.mode != modePID {
    		panic("pidDeactivate called in invalid mode")
    	}
    
    	// Both Release and successful Wait will deactivate the PID. Only one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	uploadOK := true
    	mode, asof := u.dir.Mode()
    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    		uploadOK = false
    	}
    	// If the mode is recorded with an asof date, don't upload if the report
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/crypto/internal/hpke/testdata/rfc9180-vectors.json

    [{"Name":"DHKEM(X25519, HKDF-SHA256), HKDF-SHA256, AES-128-GCM","Setup":"mode: 0\nkem_id: 32\nkdf_id: 1\naead_id: 1\ninfo: 4f6465206f6e2061204772656369616e2055726e\nikmE: 7268600d403fce431561aef583ee1613527cff655c1343f29812e66706df3234\npkEm: 37fda3567bdbd628e88668c3c8d7e97d1d1253b6d4ea6d44c150f741f1bf4431\nskEm: 52c4a758a802cd8b936eceea314432798d5baf2d7e9235dc084ab1b9cfa2f736\nikmR: 6db9df30aa07dd42ee5e8181afdb977e538f5e1fec8a06223f33f7013e525037\npkRm: 3948cfe0ad1ddb695d780e59077195da6c5650...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    				break
    			}
    		}
    	}
    
    	cname, err := LookupCNAME("www.mit.edu")
    	if err != nil {
    		t.Errorf("LookupCNAME(www.mit.edu, mode=%v): %v", mode, err)
    	} else if !strings.HasSuffix(cname, ".") {
    		t.Errorf("LookupCNAME(www.mit.edu) = %v, want cname ending in . with trailing dot (mode=%v)", cname, mode)
    	}
    
    	mxs, err := LookupMX("google.com")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                }
            }
        }
    
        private static void checkNativeServicesMode(NativeServicesMode mode) {
            if (mode != NativeServicesMode.ENABLED && mode != NativeServicesMode.DISABLED) {
                throw new IllegalArgumentException("Only explicit ENABLED or DISABLED mode is allowed for the NativeServices initialization, but was: " + mode);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/go/types/api.go

    func (tv TypeAndValue) Addressable() bool {
    	return tv.mode == variable
    }
    
    // Assignable reports whether the corresponding expression
    // is assignable to (provided a value of the right type).
    func (tv TypeAndValue) Assignable() bool {
    	return tv.mode == variable || tv.mode == mapindex
    }
    
    // HasOk reports whether the corresponding expression may be
    // used on the rhs of a comma-ok assignment.
    func (tv TypeAndValue) HasOk() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    === Fine tuning dependency locking behaviour with lock mode
    
    While the default lock mode behaves as described above, two other modes are available:
    
    Strict mode::
    In this mode, in addition to the validations above, dependency locking will fail if a configuration marked as _locked_ does not have lock state associated with it.
    
    Lenient mode::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top